CN111078206B - Form submitting method and system - Google Patents

Form submitting method and system Download PDF

Info

Publication number
CN111078206B
CN111078206B CN201911165643.0A CN201911165643A CN111078206B CN 111078206 B CN111078206 B CN 111078206B CN 201911165643 A CN201911165643 A CN 201911165643A CN 111078206 B CN111078206 B CN 111078206B
Authority
CN
China
Prior art keywords
submission
function
execution method
duplicate
calling
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201911165643.0A
Other languages
Chinese (zh)
Other versions
CN111078206A (en
Inventor
张文杰
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beike Technology Co Ltd
Original Assignee
Beike Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Beike Technology Co Ltd filed Critical Beike Technology Co Ltd
Priority to CN201911165643.0A priority Critical patent/CN111078206B/en
Publication of CN111078206A publication Critical patent/CN111078206A/en
Application granted granted Critical
Publication of CN111078206B publication Critical patent/CN111078206B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/38Creation or generation of source code for implementing user interfaces

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Human Computer Interaction (AREA)
  • Computing Systems (AREA)
  • Stored Programmes (AREA)

Abstract

The invention relates to the technical field of Internet information processing, and provides a form submission method, which comprises the following steps: acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted; acquiring a preset repeated submission prevention function according to the execution method parameter; nesting the first form submission function into the repeat submission preventing function to obtain a second form submission function; and calling the second form submission function to submit the form according to the execution method parameter. The technical scheme provided by the invention can simplify the repeated submission prevention logic code and greatly reduce the workload of developers.

Description

Form submitting method and system
Technical Field
The invention relates to the technical field of internet information processing, in particular to a form submission method and a form submission system.
Background
The form is mainly responsible for data acquisition function in the webpage, and collects various data input by an internet user in the forms of text fields, check boxes and the like and then sends the data to a server for processing. For example, a user fills in registration information on a registration page of an internet site, and clicks a submit button, which triggers a browser of a client to submit a registration form to a server, so that the server performs service processing on the registration form.
In order to prevent the problems of server overload and resource waste caused by repeated submission of forms within a certain time, in the prior art, for the submission operation of each form, a corresponding repeated submission prevention code logic needs to be specially called. That is, during the development process, the developer needs to design code logic for each form submission operation that prevents its repeated submission. Since different types of forms require different anti-duplicate submission logics, even the same type of forms need to be individually designed with the anti-duplicate submission logics, the number of anti-duplicate submission logics corresponding to the forms is also quite large for a system with many forms. Obviously, the form submission mode in the prior art greatly increases the workload of developers, and the anti-duplicate submission logic code of the whole system is also very huge.
Disclosure of Invention
In view of this, the present invention is directed to a form submission method and system, which can simplify the anti-duplicate submission of logic codes and greatly reduce the workload of developers.
In order to achieve the purpose, the technical scheme of the invention is realized as follows:
a method of form submission, the method comprising:
acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
acquiring a preset repeated submission prevention function according to the execution method parameter;
nesting the first form submission function into the repeat submission preventing function to obtain a second form submission function;
and calling the second form submission function to submit the form according to the execution method parameter.
Further, the anti-duplicate commit function is to:
defining the execution method parameters;
and executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
Further, the anti-duplicate commit function is further configured to:
defining an anti-duplicate submission identifier to judge whether the anti-duplicate submission method can be executed;
when the anti-duplicate submission method can be executed, executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
Preferably, defining the execution method parameters comprises defining at least one of:
defining whether to immediately call a function to be called;
defining whether to allow repeated calling of a function to be called;
if the repeated calling is allowed, defining the time interval of the repeated calling;
if the repeated calling is allowed, defining whether the time interval of the repeated calling needs to be reset;
if the repeated calling is allowed, whether the repeated calling is carried out in an asynchronous operation mode is defined.
Preferably, the step of calling the second form submission function to submit the form according to the execution method parameter includes:
and transmitting the execution method parameters serving as the form parameters into the second form submission function, and calling the second form submission function after the form parameters are transmitted to submit the form.
The form submission method of the invention embeds the existing first form submission function into the repeat submission prevention function to obtain the second form submission function, so that the second form submission function has the repeat submission prevention function. And when the second form submission function is called according to the preset execution method parameter, the second form submission function executes form submission operation and anti-repeated submission operation corresponding to the execution method parameter. That is to say, when the form is submitted, the invention does not need to design an anti-duplicate submission logic for each form separately, but only needs to process the existing first form submission function of the form at the time of submission, so that the form has the anti-duplicate submission function, and the specific type of the anti-duplicate submission function can be determined by the execution method parameters. Therefore, the technical scheme provided by the invention only needs to design a set of general anti-duplicate submission logics, and each form can be set with different execution method parameters according to the type of the form.
Another object of the present invention is to provide a form submission system, which can simplify the repeated submission prevention logic code, thereby greatly reducing the workload of the developer.
In order to achieve the purpose, the technical scheme of the invention is realized as follows:
a form submission system, the system comprising:
the first acquisition module is used for acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
the second acquisition module is used for acquiring a preset anti-repeat submission function according to the execution method parameter;
the nesting module is used for nesting the first form submission function into the repeated submission preventing function to obtain a second form submission function;
and the calling module is used for calling the second form submission function according to the execution method parameters to submit the form.
Further, the anti-duplicate commit function is to:
defining the execution method parameters; and executing the anti-repeat submission method corresponding to the execution method parameter according to the defined execution method parameter.
Further, the anti-duplicate commit function is further configured to:
defining an anti-duplicate submission identifier to judge whether the anti-duplicate submission method can be executed; when the anti-duplicate submission method can be executed, executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
Compared with the prior art, the form submission system and the form submission method have the same advantages, and are not described herein again.
The present invention also provides a computer storage medium having a computer program stored thereon, wherein the computer program, when executed by a processor, implements any one of the above-mentioned form submission methods.
The invention also provides terminal equipment which comprises a processor, wherein the processor is used for executing any form submission method. Additional features and advantages of the invention will be set forth in the detailed description which follows.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate an embodiment of the invention and, together with the description, serve to explain the invention and not to limit the invention.
In the drawings:
FIG. 1 is a flow chart of a method of an embodiment of the present invention;
fig. 2 is a system configuration diagram according to an embodiment of the present invention.
Detailed Description
The following describes in detail embodiments of the present invention with reference to the drawings. It should be understood that the detailed description and specific examples, while indicating embodiments of the invention, are given by way of illustration and explanation only, not limitation.
Fig. 1 is a flowchart of a method according to an embodiment of the present invention, the method including:
step S101, acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
in this embodiment, the first form submission function is an existing form submission function of each form, and executes a specific form submission function to upload the form to the server. For different types of forms, different anti-duplicate submission functions are required, for example, some forms need to limit the number of times of submitting the forms within a certain time, some forms need to initiate submission after a period of time interval of user operation, and other forms need to initiate a second request operation after a request is completed.
In this embodiment, the preset first form submission function is submitlandler () { }, and the execution method parameter is options.
Step S102, acquiring a preset anti-repeat submission function according to the execution method parameter;
the duplicate submission prevention function designed by the embodiment has universality, so that each form can be called, and different duplicate submission prevention functions are realized.
As an alternative implementation manner, the function code of the duplicate submission prevention function in this embodiment is as follows:
Figure BDA0002287378320000051
/>
Figure BDA0002287378320000061
/>
Figure BDA0002287378320000071
/>
Figure BDA0002287378320000081
the above code content is explained in detail below according to the above line numbers:
line 1: method declaration and parameter definition. The declaration anti-duplicate submission function is debounce (), and can receive two parameters, namely handle and options, wherein the handle is a mandatory argument when the function is called, and in the embodiment, the handle is replaced by the submitlandler () { } which is the first form submission function. options are unnecessary arguments when a function is called, and in this embodiment, it is specifically configured by a developer according to a form type to execute method parameters.
Line 2: the timeoutID defines an anti-duplicate commit identifier to determine whether an anti-duplicate commit method can be performed. Specifically, when the timeoutID is empty, it indicates that the corresponding function can be called, i.e., the anti-duplicate submission method can be executed; after the corresponding function is called and executed, the timeoutID is set to be not null, which indicates that the corresponding function cannot be called and the repeated submission prevention method cannot be executed. By setting the timeoutID, it can be decided whether the anti-duplicate submission function is enabled.
Lines 3-8: defining parameters of an execution method, wherein,
ISFront indicates whether a function to be called is called immediately;
the timeGap represents whether the function to be called is allowed to be called repeatedly; if the repeated calling is allowed, setting a time interval of the repeated calling, wherein the time interval is defaulted to 100ms;
isReset indicates whether the time interval of repeated calling needs to be reset or not when repeated calling processing is carried out if repeated calling is allowed, and default setting is not to be reset;
the ispemise indicates whether to perform repeated calling in the form of asynchronous operation Promise if the repeated calling is allowed, and the default setting is no, namely, the repeated calling is not performed in the form of asynchronous operation Promise by default.
Lines 9-11: and (5) judging by mistake. And if the handle transmitted by the user is a non-function, throwing error information to inform the user.
Line 13: and returning a new form submission function containing the anti-repeat submission function to the user, and calling the function every time the form is submitted, so that the anti-repeat submission logic is triggered when the form is submitted.
Line 14: judging an anti-repeat submission identifier timeoutID, judging whether the anti-repeat submission method can be executed or not, and indicating that the anti-repeat submission method can be executed when the timeoutID is empty; the timeoutID is true or non-empty, indicating that the anti-duplicate commit method cannot be performed.
Lines 16-23: if the repeat call interval is set by the anti-repeat commit logic and needs to be reset or handled in a Promise form, the interval is reset.
Lines 26-34: if the anti-duplicate commit logic has not been invoked and the time interval is handled in Promise form, the anti-duplicate commit logic is invoked immediately. When the Promise processing is finished, the anti-repeat commit flag timeoutID is reset to null.
Lines 35-38: if the processing is called immediately, firstly, the anti-repeat submission identifier timeoutID is cleared after the time interval timeGap is set, and then the anti-repeat submission logic is called immediately.
Lines 39-42: the default is set to non-immediate call processing, at this time, the anti-repeat submission logic is called after the time interval timeGap is set, and then the anti-repeat submission identifier timeoutID is cleared.
As can be seen from the function code of the anti-duplicate submission function, the anti-duplicate submission function performs the following operations: defining the execution method parameters; and executing the anti-repeat submission method corresponding to the execution method parameter according to the defined execution method parameter. For example, lines 16-23 or lines 26-34 or lines 35-38 or lines 39-42 of the above code are executed according to different options. Further, the code is also provided with an anti-duplicate submission identifier timeoutID for judging whether the anti-duplicate submission method can be executed. Therefore, in this embodiment, the duplicate commit prevention function further performs the following operations: firstly, the value of the timeoutID is judged, and when the timeoutID is empty, namely when the anti-repeat submission method can be executed, the anti-repeat submission method corresponding to the execution method parameter is executed according to the defined execution method parameter.
Of course, the method in this application is not limited to the above code implementation, which is only one possible method and is not limited in this application.
Step S103, nesting the first form submission function into the anti-repeat submission function to obtain a second form submission function;
in this embodiment, when a user submits a form, the form submission function submimithandler (), which is already in the form, is introduced into the form submission function, and the repeat submission prevention function in the advancing step S102 is nested, so as to obtain a new second form submission function with a repeat submission prevention function. In this embodiment, a submitlandler () } function is used as a parameter of the repeat submission prevention function, and an obtained second form submission function is debounce (submitlandler () }, options).
And step S104, calling the second form submission function to submit the form according to the execution method parameters.
In this embodiment, a specific operation method for calling the second form submission function to submit the form according to the execution method parameter includes that the execution method parameter is used as a parameter and is transmitted to the second form submission function, and the second form submission function after the transmission of the parameter is called to submit the form. Specifically, after the options in the function debounce (submitlhandler () }, the options) obtained in step S103 are specifically set, the parameters are imported, then the function debounce (submitlhandler () }, the options) is directly called to submit the form, and the function automatically performs the required repeat submission prevention processing on the form in the process of submitting the form.
Several practical application scenarios of the present embodiment are described below:
scene one: forms are allowed to be submitted only once in a period of time
For example, when ticket robbing or data query is performed, the access to the page is prevented from being too frequent, the overload of the server is avoided, and only one query submission is required within 2 seconds. According to the technical scheme of the invention, nesting the existing form submission function submitHandler () { } into an anti-repeat submission function debounce (), and setting an execution method parameter options to obtain the following new form submission function:
debounce(submitHandler(){},{timeGap:2000});
after the function is called, the function that the form is submitted only once in 2 seconds can be realized.
Scene two: the form needs to initiate a submission after a time interval
For example, in various search engines at present, a real-time search function is generally designed, that is, after a user finishes inputting a keyword in a search box, a search result can be obtained in real time. The problem is that the user will enter multiple words when performing a search, how will the system determine if the user has finished entering? How is the user pause during the input? It is not possible to perform a search for every word entered by the user, which would make many meaningless searches and waste resources. Therefore, the above scenario also belongs to a form anti-duplicate submission. In practical application, the time of about 1 second after the user inputs the keyword is generally counted as the input end, and if a new input is input within 1 second, the timing is restarted after the next input pause.
According to the technical scheme of the invention, nesting the existing form submission function submitHandler () { } into an anti-repeat submission function debounce (), and setting an execution method parameter options to obtain the following new form submission function:
debounce(submitHandler(){},{timeGap:1000,isReset:true});
after the function is called, the function that the form is submitted after the user input is finished for 1 second can be realized.
Scene three: the form can initiate a second request after the first request is finished
This kind of scenario is applied more, and the request sending operation generally adopts the front-end code of asynchronous operation, and generally adopts the Promise form. According to the technical scheme of the invention, nesting the existing form submission function submitHandler () { } into an anti-repeat submission function debounce (), and setting an execution method parameter options to obtain the following new form submission function:
debounce(submitHandler(){},{isPromise:true});
after the function is called, the function that the form initiates a second request after the first request is finished can be realized.
Other application scenarios are similar to the three scenarios, and only the existing form submission function needs to be nested into the repeated submission prevention function, and the parameters of the execution method need to be specifically set.
Corresponding to the above embodiment, the present invention further provides a form submission system, as shown in fig. 2, including:
the first acquisition module is used for acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
the second acquisition module is used for acquiring a preset anti-repeat submission function;
the nesting module is used for nesting the first form submission function into the repeated submission preventing function to obtain a second form submission function;
and the calling module is used for calling the second form submission function according to the execution method parameters to submit the form.
Further, the anti-duplicate commit function is to:
defining the execution method parameters; and executing the anti-repeat submission method corresponding to the execution method parameter according to the defined execution method parameter.
Further, the anti-duplicate commit function is further configured to:
defining an anti-duplicate submission identifier to judge whether the anti-duplicate submission method can be executed; when the anti-duplicate submission method can be executed, executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
Preferably, defining the execution method parameters comprises defining at least one of:
defining whether to immediately call a function to be called;
defining whether to allow repeated calling of a function to be called;
if the repeated calling is allowed, defining the time interval of the repeated calling;
if the repeated calling is allowed, defining whether the time interval of the repeated calling needs to be reset;
if the repeated calling is allowed, whether the repeated calling is carried out in an asynchronous operation mode is defined.
The working principle, the work flow and other contents of the system related to the specific implementation can be referred to the specific implementation of the form submission method provided by the invention, and the detailed description of the same technical contents is not repeated here.
The present invention also provides a computer storage medium having a computer program stored thereon, where the computer program is executed by a processor to implement the form submission method described in this embodiment.
The invention also provides a terminal device, which comprises a processor, wherein the processor is used for executing the form submission method of the embodiment.
According to the form submission method and system, the existing first form submission function is nested into the duplicate submission prevention function, the second form submission function is obtained, and the second form submission function has the duplicate submission prevention function. And when the second form submission function is called according to the preset execution method parameter, the second form submission function executes form submission operation and anti-repeated submission operation corresponding to the execution method parameter. That is to say, when the form is submitted, the invention does not need to design an anti-duplicate submission logic for each form separately, but only needs to process the existing first form submission function of the form at the time of submission, so that the form has the anti-duplicate submission function, and the specific type of the anti-duplicate submission function can be determined by the execution method parameters. Therefore, the technical scheme provided by the invention only needs to design a set of general anti-duplicate submission logics, and each form can be set with different execution method parameters according to the type of the form.
The present invention supports the following anti-duplicate commit logic: the method comprises the steps of supporting setting of pre-delay anti-duplicate submission logic, supporting setting of immediate execution anti-duplicate submission logic, supporting setting of time interval anti-duplicate submission logic, supporting setting of time reset anti-duplicate submission logic and supporting setting of anti-duplicate submission logic in a Promise form.
Although the embodiments of the present invention have been described in detail with reference to the accompanying drawings, the embodiments of the present invention are not limited to the details of the above embodiments, and various simple modifications can be made to the technical solutions of the embodiments of the present invention within the technical idea of the embodiments of the present invention, and the simple modifications all belong to the protection scope of the embodiments of the present invention.
It should be noted that the various features described in the above embodiments may be combined in any suitable manner without departing from the scope of the invention. In order to avoid unnecessary repetition, the embodiments of the present invention do not describe every possible combination.
Those skilled in the art will understand that all or part of the steps in the method according to the above embodiments may be implemented by a program, which is stored in a storage medium and includes several instructions to enable a single chip, a chip, or a processor (processor) to execute all or part of the steps in the method according to the embodiments of the present application. And the aforementioned storage medium includes: a U-disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk or an optical disk, and other various media capable of storing program codes.
In addition, any combination of various different implementation manners of the embodiments of the present invention is also possible, and the embodiments of the present invention should be considered as disclosed in the embodiments of the present invention as long as the combination does not depart from the spirit of the embodiments of the present invention.

Claims (10)

1. A method of form submission, the method comprising:
acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
acquiring a preset repeated submission prevention function according to the execution method parameter;
nesting the first form submission function into the repeat submission preventing function to obtain a second form submission function;
and calling the second form submission function to submit the form according to the execution method parameter.
2. The form submission method of claim 1, wherein the anti-duplication submission function is used to:
defining the execution method parameters;
and executing the anti-repeat submission method corresponding to the execution method parameter according to the defined execution method parameter.
3. The form submission method of claim 2, wherein the anti-duplication submission function is further configured to:
defining an anti-duplicate submission identifier to judge whether the anti-duplicate submission method can be executed;
when the anti-duplicate submission method can be executed, executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
4. The form submission method of claim 2, wherein defining the execution method parameters includes defining at least one of:
defining whether to immediately call a function to be called;
defining whether to allow repeated calling of a function to be called;
if the repeated calling is allowed, defining the time interval of the repeated calling;
if the repeated calling is allowed, defining whether the time interval of the repeated calling needs to be reset;
if the repeated calling is allowed, whether the repeated calling is carried out in an asynchronous operation mode or not is defined.
5. The form submission method of claim 4, wherein invoking the second form submission function to submit the form according to the execution method parameters includes:
and transmitting the execution method parameters serving as the form parameters into the second form submission function, and calling the second form submission function after the form parameters are transmitted to submit the form.
6. A form submission system, the system comprising:
the first acquisition module is used for acquiring a preset first form submission function and acquiring an execution method parameter; the parameters of the execution method are preset according to the type of the form to be submitted;
the second acquisition module is used for acquiring a preset anti-repeat submission function according to the execution method parameter;
the nesting module is used for nesting the first form submission function into the repeated submission preventing function to obtain a second form submission function;
and the calling module is used for calling the second form submission function according to the execution method parameters to submit the form.
7. The form submission system of claim 6, wherein the anti-duplication submission function is configured to:
defining the execution method parameters; and executing the anti-repeat submission method corresponding to the execution method parameter according to the defined execution method parameter.
8. The form submission system of claim 7, wherein the anti-duplication submission function is further configured to:
defining an anti-duplicate submission identifier to judge whether the anti-duplicate submission method can be executed; when the anti-duplicate submission method can be executed, executing the anti-duplicate submission method corresponding to the execution method parameter according to the defined execution method parameter.
9. A computer storage medium on which a computer program is stored, the computer program, when being executed by a processor, implementing the form submission method of any one of claims 1 to 5.
10. A terminal device, characterized by comprising a processor for executing the form submission method of any one of claims 1 to 5.
CN201911165643.0A 2019-11-25 2019-11-25 Form submitting method and system Active CN111078206B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911165643.0A CN111078206B (en) 2019-11-25 2019-11-25 Form submitting method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911165643.0A CN111078206B (en) 2019-11-25 2019-11-25 Form submitting method and system

Publications (2)

Publication Number Publication Date
CN111078206A CN111078206A (en) 2020-04-28
CN111078206B true CN111078206B (en) 2023-03-24

Family

ID=70311569

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911165643.0A Active CN111078206B (en) 2019-11-25 2019-11-25 Form submitting method and system

Country Status (1)

Country Link
CN (1) CN111078206B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112905163B (en) * 2021-03-15 2024-04-16 上海万物新生环保科技集团有限公司 Form submitting method and device

Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6237035B1 (en) * 1997-12-18 2001-05-22 International Business Machines Corporation System and method for preventing duplicate transactions in an internet browser/internet server environment
US6549941B1 (en) * 1999-11-22 2003-04-15 Alexa Internet Software system and methods for resubmitting form data to related web sites
US7536389B1 (en) * 2005-02-22 2009-05-19 Yahoo ! Inc. Techniques for crawling dynamic web content
CN106372174A (en) * 2016-08-31 2017-02-01 东软集团股份有限公司 Method and device for preventing repeated submission of form
CN106445552A (en) * 2016-10-13 2017-02-22 浪潮(苏州)金融技术服务有限公司 Method for submitting verification of medical industry client development form
CN107678815A (en) * 2017-09-14 2018-02-09 中国银联股份有限公司 A kind of page mask display methods and web page server
CN108536793A (en) * 2018-04-02 2018-09-14 郑州云海信息技术有限公司 A kind of method and system for preventing ajax requests from repeating to submit
CN109739554A (en) * 2018-12-14 2019-05-10 深圳壹账通智能科技有限公司 Prevent code from repeating submission method, system, computer equipment and storage medium
CN110177145A (en) * 2019-05-28 2019-08-27 四川长虹电器股份有限公司 A method of prevent list from repeating to submit
US10482150B1 (en) * 2014-09-03 2019-11-19 State Farm Mutual Automobile Insurance Company Electronic forms interaction framework for a consistent user experience

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8108488B2 (en) * 2002-11-18 2012-01-31 Jackbe Corporation System and method for reducing bandwidth requirements for remote applications by utilizing client processing power
US20060265380A1 (en) * 2005-05-23 2006-11-23 Jared Fry Methods, systems, and computer program products for preventing double form submission at a user agent
US8924346B2 (en) * 2011-09-09 2014-12-30 Oracle International Corporation Idempotence for database transactions
CN103312664B (en) * 2012-03-08 2017-06-09 阿里巴巴集团控股有限公司 Form validation methods, devices and systems

Patent Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6237035B1 (en) * 1997-12-18 2001-05-22 International Business Machines Corporation System and method for preventing duplicate transactions in an internet browser/internet server environment
US6549941B1 (en) * 1999-11-22 2003-04-15 Alexa Internet Software system and methods for resubmitting form data to related web sites
US7536389B1 (en) * 2005-02-22 2009-05-19 Yahoo ! Inc. Techniques for crawling dynamic web content
US10482150B1 (en) * 2014-09-03 2019-11-19 State Farm Mutual Automobile Insurance Company Electronic forms interaction framework for a consistent user experience
CN106372174A (en) * 2016-08-31 2017-02-01 东软集团股份有限公司 Method and device for preventing repeated submission of form
CN106445552A (en) * 2016-10-13 2017-02-22 浪潮(苏州)金融技术服务有限公司 Method for submitting verification of medical industry client development form
CN107678815A (en) * 2017-09-14 2018-02-09 中国银联股份有限公司 A kind of page mask display methods and web page server
CN108536793A (en) * 2018-04-02 2018-09-14 郑州云海信息技术有限公司 A kind of method and system for preventing ajax requests from repeating to submit
CN109739554A (en) * 2018-12-14 2019-05-10 深圳壹账通智能科技有限公司 Prevent code from repeating submission method, system, computer equipment and storage medium
CN110177145A (en) * 2019-05-28 2019-08-27 四川长虹电器股份有限公司 A method of prevent list from repeating to submit

Also Published As

Publication number Publication date
CN111078206A (en) 2020-04-28

Similar Documents

Publication Publication Date Title
JP5400305B2 (en) Method, apparatus, and computer program for improving expression processing
US7451136B2 (en) System and method for searching multiple disparate search engines
JP6742650B2 (en) Application calling method and device using mobile browser
CN108664613B (en) Data query method and device, computer equipment and storage medium
EP1873706A1 (en) Systems and methods for integrating services
CN107168960B (en) Service execution method and device
CN111143087A (en) Interface calling method and device, storage medium and server
CN110780870B (en) Service execution method, device, equipment and storage medium
CN102567400B (en) Method for realizing Web visit and Web server
US20200142674A1 (en) Extracting web api endpoint data from source code
US11263542B2 (en) Technologies for auto discover and connect to a rest interface
CN109343983B (en) Information interaction method, device, equipment and storage medium between function modules
CN111078206B (en) Form submitting method and system
CN110704130A (en) Data processing method and device
CN106453250B (en) A kind of processing method of big data RPC
CN110874278A (en) Embedding method of external system, workflow system, device and storage medium
CN112732742B (en) Query page creating method and device, computer equipment and storage medium
CN108763474B (en) Method, device and storage medium for acquiring transaction correlation and executing regression test
CN107220129A (en) Communication means and system between a kind of software module
CN114860468A (en) SDK calling method and device, computer equipment and storage medium
Liu et al. Automatic generation of ifttt mashup infrastructures
CN111857950A (en) Resource pool management container, management method and storage medium thereof
CN112711455B (en) Page interaction method and device, electronic equipment and storage medium
CN111291299B (en) Method for directly obtaining local command execution result and local server
CN113010237B (en) Data interaction method, system, electronic equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant