CN109710534B - Form real-time monitoring and checking method and system based on custom attribute - Google Patents

Form real-time monitoring and checking method and system based on custom attribute Download PDF

Info

Publication number
CN109710534B
CN109710534B CN201811640293.4A CN201811640293A CN109710534B CN 109710534 B CN109710534 B CN 109710534B CN 201811640293 A CN201811640293 A CN 201811640293A CN 109710534 B CN109710534 B CN 109710534B
Authority
CN
China
Prior art keywords
data
processing
array
module
json object
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
CN201811640293.4A
Other languages
Chinese (zh)
Other versions
CN109710534A (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.)
Beijing Casicloud Co ltd
Original Assignee
Beijing Casicloud 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 Beijing Casicloud Co ltd filed Critical Beijing Casicloud Co ltd
Priority to CN201811640293.4A priority Critical patent/CN109710534B/en
Publication of CN109710534A publication Critical patent/CN109710534A/en
Application granted granted Critical
Publication of CN109710534B publication Critical patent/CN109710534B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Abstract

The invention discloses a form real-time monitoring and inspection method and a form real-time monitoring and inspection system based on custom attributes, which comprise the following steps: real-time monitoring and checking the form data by combining the custom attributes and the regular expressions; extracting the input data according to the serialized forms, wherein the same form data is put into the same array; and displaying the recorded data back to the corresponding position according to the deserialization form. The invention has the beneficial effects that: the method has the advantages of low learning cost and strong expansibility, improves the form processing efficiency of developers, and simultaneously provides mature form serialization and deserialization operation methods, so that the developers can conveniently and quickly obtain/set corresponding data, and a series of operations of the form are simplified.

Description

Form real-time monitoring and checking method and system based on custom attribute
Technical Field
The invention relates to the technical field of form verification, in particular to a form real-time monitoring and checking method and system based on custom attributes.
Background
The Form is a common component of a web system and is mainly used for data addition and editing operation, data operation relates to the inspection of user filling data, the extraction of the user filling data, the playback of the data and other operations, a series of operations can generate complex logic and interaction, the interaction and logic are optimized, developers can concentrate on business logic, complex detailed processing is not needed, and the development efficiency is improved.
At present, the method for checking form mainly comprises that JQuery calls a corresponding method, a checking rule is dynamically generated, a user is required to define a large number of corresponding rules according to attributes, and the specification is complicated; in the aspect of plug-in expandability, a certain learning cost is required for customizing a verification method and a calling method, and the use is complex. The method has the advantages that the problem still exists in the existing method for the serialization operation of the form, namely when the form relates to an array, generated data cannot be analyzed normally; in the deserialization of the form, the array, the radio, the checkbox, the select and the textarea cannot normally set data into the corresponding contents.
An effective solution to the problems in the related art has not been proposed yet.
Disclosure of Invention
Aiming at the technical problems in the related art, the invention provides a form real-time monitoring and checking method and a form real-time monitoring and checking system based on custom attributes, which can solve a plurality of problems existing in the use of the existing form, enable developers to realize the required functions without processing complicated detail interaction, greatly improve the development efficiency and the reliability of codes, reduce the testing workload and reduce the team maintenance cost.
In order to achieve the technical purpose, the technical scheme of the invention is realized as follows:
a form real-time monitoring and inspection method based on custom attributes comprises the following steps:
real-time monitoring and checking the form data by combining the custom attributes and the regular expressions;
extracting the input data according to the serialized forms, wherein the same form data is put into the same array;
and displaying the recorded data back to the corresponding position according to the deserialization form.
Further, the method of combining the custom attribute and the regular expression includes: and assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-validator mode.
Further, the extracting the entry data according to the serialized form includes:
obtaining all data in the form by utilizing a seriarizeArray () and returning the data in an array form;
carrying out cyclic processing on the acquired array data;
judging whether the name exists in the returned json object or not during the circulation processing;
and when the data exists in the json object, judging whether the current data content is an array or not.
Further, the determining whether the name exists in the returned json object during the loop processing includes: when the json object returned by the name does not exist, directly placing the json object into the json object; and when the json object returned by the name exists, processing the array data.
Further, the displaying the entry data back to the corresponding position according to the deserialization form comprises:
circularly processing the deserialized data;
and judging the repeated content of the name during the cyclic processing, and performing different data redisplay processing modes according to the difference of the tagName.
In another aspect of the present invention, a form real-time monitoring and checking system based on a custom attribute is provided, which includes:
the monitoring and inspection module is used for monitoring and inspecting form data in real time in a mode of combining the custom attributes and the regular expressions;
the extraction module is used for extracting the input data according to the serialized forms, wherein the same form data are put into the same array;
and the recovery module is used for displaying the recorded data back to the corresponding position according to the deserialization form.
Further, the monitoring and verifying module combines the custom attribute and the regular expression, and the method includes: and assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-validator mode.
Further, the extracting module extracts the entry information according to the form data after passing the inspection and the serialized form, including:
the acquisition module is used for acquiring all data in the form by utilizing the serializarray () and returning the data in an array form;
the first processing module is used for circularly processing the acquired array data;
the first judgment module is used for judging whether the name exists in the returned json object or not during the cyclic processing;
and the second judging module is used for judging whether the current data content is an array or not when the data exists in the json object.
Further, when performing loop processing in the first determining module, determining whether the name exists in the returned json object includes: and when the json object returned by the name exists, processing the array data.
Further, the displaying the entry data back to the corresponding position according to the deserialization form in the recovery module comprises:
the second processing module is used for circularly processing the deserialized data;
and the third judging module is used for judging the name repeated content during the cyclic processing and carrying out different data redisplay processing modes according to the difference of the tagName.
The invention has the beneficial effects that: the method has the advantages of low learning cost and strong expansibility, improves the form processing efficiency of developers, and simultaneously provides mature form serialization and deserialization operation methods, so that the developers can conveniently and quickly obtain/set corresponding data, and a series of operations of the form are simplified.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings needed in the embodiments will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings without creative efforts.
FIG. 1 is a flowchart of a form real-time monitoring and inspection method based on custom attributes according to an embodiment of the present invention;
FIG. 2 is a schematic diagram of a form real-time monitoring and checking system based on custom attributes according to an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments that can be derived by one of ordinary skill in the art from the embodiments given herein are intended to be within the scope of the present invention.
As shown in fig. 1, a form real-time monitoring and checking method based on a custom attribute according to an embodiment of the present invention includes the following steps:
real-time monitoring and checking the form data by combining the custom attributes and the regular expressions;
after all the verification passes, extracting the input information by using the serialized form, and putting the same form data into the same array;
and displaying the input data back to a corresponding position according to the deserialization form, namely displaying back the data when the user content is edited, namely deserialization operation, wherein the deserialization form () method is used for displaying back the json data returned by the background according to key: and setting the value to a corresponding position in a one-to-one corresponding mode.
Specifically, a mode of combining a custom attribute and a regular expression is used for defining a check rule and an error prompt of a user into the custom attribute, when the method is used, an existing check rule method can be called, regular check can be defined by self, the serialization operation of a form is supplemented, the operation of an array is supplemented, and the same data is put into the same array; the method integrates the form operation and provides integral packaging from user input to data extraction and storage to display and editing.
The Form can relate to the operations of inputting information by a user, extracting the input information, extracting the real-time monitoring of the information, sending the Form data after the monitoring is passed to a background for storage operation, displaying the data back to a corresponding position during content editing and the like.
In a specific embodiment of the present invention, the combination of the custom attribute and the regular expression includes: and assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-validator mode.
Specifically, when a user is required to record information in the system, data needs to be monitored and checked in real time, a corresponding prompt is given, and a required detection rule is assigned to a user-defined attribute according to a strict JSON data format in a user-defined attribute data-valid mode, wherein the format is as follows:
data-validator='{"types":"","regex":"","errorMsg":""}'
wherein the field "types" provides optional detection items, such as non-empty field, mobile phone number, email, id card, fax, etc. (the common field detection item is provided here); the regex is a self-defined regular expression inspection mode, when the optional detection items provided by the types do not meet the user requirements, the corresponding requirements can be realized through the mode, and the priority of the current field is higher than that of the types field; the error Msg is error prompt content, if the error prompt content is null, a system default prompt is used, the current field content is preferentially used as the prompt content, wherein the retrieval process comprises the following steps:
a. if the current input box loses focus, acquiring the input content of the user and the corresponding data-validator value, and entering the step b;
b. judging whether the regex value is empty, if not, checking the input content of the user according to the current regular expression, and entering the step c; if the value is empty, checking according to the value of types, and entering the step d;
c. and obtaining a regex value in the json object, using a regular expression inspection method new RegExp () to inspect whether the current input content is matched with the regular expression, and if so, setting flag to true, otherwise, setting flag to false. Entering step f;
d. obtaining a typevalue in a json object, separating character strings through commas, circularly judging whether a corresponding method exists, if so, entering the corresponding method for matching, referring to the step e for a method processing mode, processing page display content according to a return value of a matching result, and entering the step f;
e. the common detection method is characterized in that a prototype chain extension method is used, the prototype chain extension method is defined on a prototype chain of the real-time monitoring method, when the real-time monitoring method is called, detection content is required to be transmitted into the method as a form parameter, then whether the value meets a corresponding rule or not is judged through a regular mode or other suitable modes, if the value meets the corresponding rule, a flag is set to true, otherwise, the flag is false, and error prompt information is returned. In addition, when the existing detection item does not meet the development requirement, a corresponding method can be additionally defined through an extended prototype chain method (template form. prototype);
f. and if the flag value is false, namely the user input information does not meet the check requirement, acquiring an error Msg value in the json object, if the error Msg value is not null, displaying corresponding information on a page, and otherwise, displaying default prompt information on the page. And if the flag value is true, removing error prompt information on the page to indicate that the verification is passed.
In a specific embodiment of the present invention, the extracting the entry data according to the serialized form includes:
using a seriarizeArray () to obtain all data in the form and returning the data in an array form;
carrying out cyclic processing on the acquired array data;
judging whether the name exists in the returned json object or not during the circulation processing;
and when the data exists in the json object, judging whether the current data content is an array or not.
Specifically, a, using a seriarizoarray () to obtain all data in the form, returning the data in an array form, and entering the step b;
and b, processing the acquired array data into a required format in an each loop mode, wherein the processing mode refers to the step c.
c, processing the data of the array, namely using an each loop, firstly judging whether the name value exists in the data result object or not in each loop, and if not, assigning the key value and the value to the data result object in a one-to-one correspondence manner; if the key value exists, that is, the key value is repeated, the corresponding value is processed into an array, the corresponding value in the data result object is taken, if the value is the array, the new data is pushed into the existing array, if the value is the character string, the character string and the currently obtained value are formed into an array, and the array is assigned to the key value;
and d, returning the processed data to obtain the data in the required format.
In an embodiment of the present invention, the determining whether the name exists in the returned json object during the loop processing includes: when the json object returned by the name does not exist, directly placing the json object into the json object; and when the json object returned by the name exists, processing the array data.
In a specific embodiment of the present invention, the displaying the entry data back to the corresponding position according to the deserialization form includes:
circularly processing the deserialized data;
and judging the repeated content of the name during the cyclic processing, and performing different data redisplay processing modes according to the difference of the tagName.
Specifically, a, performing each cycle processing on data needing deserialization;
b. during cyclic processing, firstly, a dom object corresponding to a name value is obtained, the length of the object is obtained to judge whether name repeated content exists, secondly, a tagName corresponding to the name value is obtained, different data playback processing modes are carried out according to the difference of the tagName, and if the tagName is input, the step c is carried out; if tagName is select, entering step d; if the contents are not the contents, directly assigning values;
c. if the tagName is input, judging the type attribute of the input, if the tagName is radio, taking a dom with the same name value as the data name value and the same value as the data value, and adding an attribute checked; if the data name value is not radio, further judging whether the length of a dom object corresponding to the data name value is greater than 1, if so, adopting a cyclic assignment mode, judging whether the type of input is a checkbox during circulation, if so, taking a dom with the name value being the same as the data name value and the value being the same as the data value, and adding an attribute checked; if the linkage information is not a checkbox, direct assignment is carried out, if the linkage information is less than or equal to 1, a direct assignment mode is used for processing, and a click event is triggered, so that the purpose of synchronously modifying the corresponding linkage information is achieved;
d. if the tagName is select, the value is assigned to the select, and a change event of the select is triggered to modify the content correspondingly displayed on the page.
In another aspect of the present invention, a form real-time monitoring and checking system based on a custom attribute is provided, which includes:
the monitoring and inspection module is used for monitoring and inspecting form data in real time in a mode of combining the custom attributes and the regular expressions;
the extraction module is used for extracting the input data according to the serialized forms, wherein the same form data are put into the same array;
and the recovery module is used for displaying the recorded data back to the corresponding position according to the deserialization form.
Specifically, when a user is required to record information in the system, data needs to be monitored and checked in real time, a corresponding prompt is given, and a required detection rule is assigned to a user-defined attribute according to a strict JSON data format in a user-defined attribute data-valid mode, wherein the format is as follows:
data-validator='{"types":"","regex":"","errorMsg":""}'
wherein the field "types" provides optional detection items, such as non-empty field, mobile phone number, email, id card, fax, etc. (the common field detection item is provided here); the regex is a self-defined regular expression inspection mode, when the optional detection items provided by the types do not meet the user requirements, the corresponding requirements can be realized through the mode, and the priority of the current field is higher than that of the types field; the error Msg is error prompt content, if the error prompt content is null, a system default prompt is used, the current field content is preferentially used as the prompt content, wherein the retrieval process comprises the following steps:
a. if the current input box loses focus, acquiring the input content of the user and the corresponding data-validator value, and entering the step b;
b. judging whether the regex value is empty, if not, checking the input content of the user according to the current regular expression, and entering the step c; if the value is empty, checking according to the value of types, and entering the step d;
c. and obtaining a regex value in the json object, using a regular expression inspection method new RegExp () to inspect whether the current input content is matched with the regular expression, and if so, setting flag to true, otherwise, setting flag to false. Entering step f;
d. obtaining a typevalue in a json object, separating character strings through commas, circularly judging whether a corresponding method exists, if so, entering the corresponding method for matching, referring to the step e for a method processing mode, processing page display content according to a return value of a matching result, and entering the step f;
e. the common detection method is characterized in that a prototype chain extension method is used, the prototype chain extension method is defined on a prototype chain of the real-time monitoring method, when the real-time monitoring method is called, detection content is required to be transmitted into the method as a form parameter, then whether the value meets a corresponding rule or not is judged through a regular mode or other suitable modes, if the value meets the corresponding rule, a flag is set to true, otherwise, the flag is false, and error prompt information is returned. In addition, when the existing detection item does not meet the development requirement, a corresponding method can be additionally defined through an extended prototype chain method (template form. prototype);
f. and if the flag value is false, namely the user input information does not meet the check requirement, acquiring an error Msg value in the json object, if the error Msg value is not null, displaying corresponding information on a page, and otherwise, displaying default prompt information on the page. And if the flag value is true, removing error prompt information on the page to indicate that the verification is passed.
In a specific embodiment of the present invention, the method for combining the custom attribute and the regular expression in the monitoring and verifying module includes: and assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-validator mode.
In a specific embodiment of the present invention, the extracting, by the extracting module, the entry information according to the serialized form according to the checked form data includes:
the acquisition module is used for acquiring all data in the form by utilizing the serializarray () and returning the data in an array form;
the first processing module is used for circularly processing the acquired array data;
the first judgment module is used for judging whether the name exists in the returned json object or not during the cyclic processing;
and the second judging module is used for judging whether the current data content is an array or not when the data exists in the json object.
Specifically, a, using a seriarizoarray () to obtain all data in the form, returning the data in an array form, and entering the step b;
b, processing the acquired array data into a required format in an each circulating mode, wherein the processing mode is shown in step c;
c, processing the data of the array, namely using an each loop, firstly judging whether the name value exists in the data result object or not in each loop, and if not, assigning the key value and the value to the data result object in a one-to-one correspondence manner; if the key value exists, that is, the key value is repeated, the corresponding value is processed into an array, the corresponding value in the data result object is taken, if the value is the array, the new data is pushed into the existing array, if the value is the character string, the character string and the currently obtained value are formed into an array, and the array is assigned to the key value;
and d, returning the processed data to obtain the data in the required format.
In a specific embodiment of the present invention, the determining, when performing loop processing in the first determining module, whether a name exists in a returned json object includes: and when the json object returned by the name exists, processing the array data.
In a specific embodiment of the present invention, displaying the entry data back to the corresponding location according to the deserialization form in the recovery module includes:
the second processing module is used for circularly processing the deserialized data;
and the third judging module is used for judging the name repeated content during the cyclic processing and carrying out different data redisplay processing modes according to the difference of the tagName.
In conclusion, by means of the technical scheme, through the serialization operation and the deserialization operation of the form, the learning cost is low, the expansibility is strong, the form processing efficiency of developers is improved, and meanwhile, mature form serialization and deserialization operation methods are provided, so that the developers can conveniently and quickly obtain/set corresponding data, and a series of operations of the form are simplified.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like that fall within the spirit and principle of the present invention are intended to be included therein.

Claims (2)

1. A form real-time monitoring and inspection method based on custom attributes is characterized by comprising the following steps:
real-time monitoring and checking the form data by combining the custom attributes and the regular expressions;
extracting the input data according to the serialized forms, wherein the same form data is put into the same array;
displaying the input data back to the corresponding position according to the deserialization form;
the method for combining the custom attributes and the regular expressions comprises the following steps: assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-identifier mode;
the extracting the input data according to the serialized form comprises:
obtaining all data in the form by utilizing a seriarizeArray () and returning the data in an array form;
carrying out cyclic processing on the acquired array data;
judging whether the name exists in the returned json object or not during the circulation processing;
when the data exists in the json object, judging whether the current data content is an array or not;
judging whether the name exists in the returned json object during the loop processing comprises the following steps: when the json object returned by the name does not exist, directly placing the json object into the json object; when the json object returned by the name exists, processing the array data;
the displaying the entry data back to the corresponding position according to the deserialization form comprises:
circularly processing the deserialized data;
and judging the repeated content of the name during the cyclic processing, and performing different data redisplay processing modes according to the difference of the tagName.
2. The utility model provides a form real-time supervision test system based on custom attribute which characterized in that includes:
the monitoring and inspection module is used for monitoring and inspecting form data in real time in a mode of combining the custom attributes and the regular expressions;
the extraction module is used for extracting the input data according to the serialized forms, wherein the same form data are put into the same array;
the recovery module is used for displaying the input data back to the corresponding position according to the deserialization form;
the monitoring and checking module combines the custom attribute and the regular expression, and comprises the following steps: assigning the required detection rule to the custom attribute by using a JSON data format in a custom attribute data-identifier mode;
the extraction module extracts the input information according to the form data after passing the inspection and the serialized forms, and comprises the following steps:
the acquisition module is used for acquiring all data in the form by utilizing the serializarray () and returning the data in an array form;
the first processing module is used for circularly processing the acquired array data;
the first judgment module is used for judging whether the name exists in the returned json object or not during the cyclic processing;
the second judgment module is used for judging whether the current data content is an array or not when the data exists in the json object;
judging whether the name exists in the returned json object or not during the circulation processing in the first judging module comprises the following steps: when the json object returned by the name exists, processing the array data;
the step of displaying the recorded data back to the corresponding position according to the deserialization form in the recovery module comprises the following steps:
the second processing module is used for circularly processing the deserialized data;
and the third judging module is used for judging the name repeated content during the cyclic processing and carrying out different data redisplay processing modes according to the difference of the tagName.
CN201811640293.4A 2018-12-29 2018-12-29 Form real-time monitoring and checking method and system based on custom attribute Active CN109710534B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201811640293.4A CN109710534B (en) 2018-12-29 2018-12-29 Form real-time monitoring and checking method and system based on custom attribute

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201811640293.4A CN109710534B (en) 2018-12-29 2018-12-29 Form real-time monitoring and checking method and system based on custom attribute

Publications (2)

Publication Number Publication Date
CN109710534A CN109710534A (en) 2019-05-03
CN109710534B true CN109710534B (en) 2022-01-11

Family

ID=66260226

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201811640293.4A Active CN109710534B (en) 2018-12-29 2018-12-29 Form real-time monitoring and checking method and system based on custom attribute

Country Status (1)

Country Link
CN (1) CN109710534B (en)

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104899027A (en) * 2015-05-22 2015-09-09 国云科技股份有限公司 Universal form verification method for js
CN106681973A (en) * 2016-12-20 2017-05-17 北京奇虎科技有限公司 Method and device for achieving automatically filling browser sheet in test
CN106814998A (en) * 2015-11-27 2017-06-09 阿里巴巴集团控股有限公司 List sequencing method and device
CN107409126A (en) * 2015-02-24 2017-11-28 思科技术公司 System and method for protecting enterprise computing environment safety
CN108897779A (en) * 2018-06-04 2018-11-27 广州环通信息技术有限公司 A kind of quick obtaining list value and the method and system to list assignment

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
FR3021769B1 (en) * 2014-05-27 2016-07-01 Thales Sa DEVICE AND METHOD FOR GENERATING AT LEAST ONE COMPUTER FILE FOR PRODUCING A GRAPHICAL INTERFACE OF ELECTRONIC EQUIPMENT, AND ASSOCIATED COMPUTER PROGRAM PRODUCT
GB2546239A (en) * 2015-11-23 2017-07-19 Acadiant Ltd A Method and system for providing and executing web applications
CN107423061A (en) * 2017-07-12 2017-12-01 江苏速度信息科技股份有限公司 A kind of list generation method based on ISON data
CN109086379A (en) * 2018-07-25 2018-12-25 北京航天云路有限公司 High-dimensional transaction data analysis and method for visualizing and system

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107409126A (en) * 2015-02-24 2017-11-28 思科技术公司 System and method for protecting enterprise computing environment safety
CN104899027A (en) * 2015-05-22 2015-09-09 国云科技股份有限公司 Universal form verification method for js
CN106814998A (en) * 2015-11-27 2017-06-09 阿里巴巴集团控股有限公司 List sequencing method and device
CN106681973A (en) * 2016-12-20 2017-05-17 北京奇虎科技有限公司 Method and device for achieving automatically filling browser sheet in test
CN108897779A (en) * 2018-06-04 2018-11-27 广州环通信息技术有限公司 A kind of quick obtaining list value and the method and system to list assignment

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
DataValidator(正则验证(更详细));我的头上没有犄角;《https://blog.csdn.net/qq_42250299/article/details/82728478》;20180916;全文 *

Also Published As

Publication number Publication date
CN109710534A (en) 2019-05-03

Similar Documents

Publication Publication Date Title
CN107480053B (en) Software test data generation method and device
CN107844421A (en) Interface test method, device, computer equipment and storage medium
CN111460446B (en) Malicious file detection method and device based on model
CN110688307B (en) JavaScript code detection method, device, equipment and storage medium
US20150026666A1 (en) Analysis system, analysis method, and computer program product
JP6354457B2 (en) Application development support apparatus, data processing method thereof, and program
CN109992498A (en) Generation method and system, the computer system of test case
CN113420201B (en) Cross-domain element positioning and tree generating method for browser RPA system
CN111930617B (en) Automatic test method and device based on data objectification
CN105302115B (en) Train network application layer control software automated testing method
CN110162457A (en) Test method, device, equipment and the storage medium of user interface
CN113032244A (en) Interface testing method, device, computer system and computer readable storage medium
CN109710534B (en) Form real-time monitoring and checking method and system based on custom attribute
CN111563226B (en) User-defined layout online form page data storage method and device
CN108427580A (en) Configure detection method, storage medium and the smart machine repeated to name
CN111159028B (en) Webpage testing method and device
CN111459774B (en) Method, device, equipment and storage medium for acquiring flow of application program
CN111508562A (en) Visual display method, device, equipment and medium of flow descriptive language
CN107741905B (en) Test case, analytic model thereof, execution method, storage medium and processor
CN115454702A (en) Log fault analysis method and device, storage medium and electronic equipment
CN113742559A (en) Keyword detection method and device, electronic equipment and storage medium
CN114895914A (en) Log output code generation method and device, electronic equipment and storage medium
CN112181816A (en) Interface testing method and device based on scene, computer equipment and medium
CN113536762A (en) JSON text comparison method and device
CN111461253A (en) Automatic feature extraction system and method

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