English
submit
About 84 wordsLess than 1 minute
2025-09-22
This method is used to trigger the submission process.
Parameters
| Parameter | Description | Type |
|---|---|---|
| options | Optional parameters | Object |
Description of the options parameter:
| Parameter | Description | Type | Default |
|---|---|---|---|
| skipAllValidate | Skip all validation logic, including field validation, validation rules, duplicate-check rules, etc. | Boolean | false |
Return Value
None
Code Example
export default function (context) {
return {
/** After the create/edit page has finished rendering */
renderEnd(){
// default submission process
context.submit();
// submit while skipping all validation logic
//context.submit({skipAllValidate:true});
}
}
}