비동기식 양식 제출
4087 단어 양식 제출
//
add_sale_info: function () {
//
if (this.in_syncing) {
return;
}
var current_view = this;
this.in_syncing = true;
// url
var return_url = '/order/list/';
// url
var sale_url = '/order/add/sale/'+$('#id_pk').val()+'/info/';
//
var sale_info = { sale_price : $('#id_sale_price').val(),
sale_cost_price : $('#id_sale_cost_price').val(),
sale_bonus_price: $('#id_sale_bonus_price').val(),
tax_price: $('#id_tax_price').val(),
other_price: $('#id_other_price').val()
};
//
$.ajax({
type: "POST",
url: sale_url,
data: sale_info,
success: function(data) {
if (data.error_code > 0) {
window.alert(data.error_msg);
}else {
//
window.location.href = return_url;
}
},
error: function(){
window.alert(' , 。');
},
complete: function(){
//
//
current_view.options.parentView.trigger('finish_ajax_sync');
current_view.in_syncing = false;
}
});
return false; // avoid to execute the actual submit of the form.
},
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
비동기식 양식 제출텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.