我的提取功能较小
bbModel.fetch({
type : constants.httpMethod.POST,
beforeSend : function(xhr) {
// set header
},
contentType : constants.contentType.APPLICATION_JSON,
data : JSON.stringify(formData),
success : function(model, response, xhr) {
console.log(response);
},
complete : function(xhr) {
console.log(xhr);
}
});
在更新到jquery 3.3.1之后,完整的函数将在成功之前触发。
请帮助我进行此查询。