为了允许在提交之前验证表单,我想从我定义的 Submit 方法进行简单的 HTTP POST 提交。
视图代码:
<form data-bind="submit: BaseSubmit" id="FormId">
<!-- Some rows ... -->
<button type="submit">Create</button>
</form>
以及 JS 的行为
this.viewModel.BaseSubmit =
function(formElements) {
//Here the code to make the submit redirection
};
这可能吗 ?提前谢谢。