Jump to content
  • 0

Не могу разобраться с jquery POST


AloneCoder
 Share

Question

Здравствуйте

Пытаюсь перед отправкой формы дозаполнить некоторые ее значения, в частности сгенерировать новый номер заказа. Имеется код:


$('#assistForm').submit(function () {
$.ajax({
type: 'POST',
url: '/handler.php',
data: 'paysystem_id=' + $('#paysystem_id').val() + '&summ=' + $('#focusedInput').val() + '&gross=' + $('#summ_comission').val(),
dataType: "json",
success: function (result) {
var obj = jQuery.parseJSON(result);
$('input[name=OrderNumber]').val(obj.id);
$('input[name=OrderComment]').val('Payment № '+obj.id);
},
processData: false,
beforeSend: function() {
return true;
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR + textStatus + errorThrown);
}
});
//если здесь добавить строчку return false; то запрос нормально отрабатывает,
//но валидация формы не проходит и соответственно она не отправляется.
//Если добавить true или просто опустить запрос возвращает ошибку и почему-то уходит со статусом cancel
});

В чем я не прав?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0


$('#assistForm').submit(function () {
$.ajax({
type: 'POST',
url: '/handler.php',
data: 'paysystem_id=' + $('#paysystem_id').val() + '&summ=' + $('#focusedInput').val() + '&gross=' + $('#summ_comission').val(),
dataType: "json",
success: function (result) {
var obj = jQuery.parseJSON(result);
$('input[name=OrderNumber]').val(obj.id);
$('input[name=OrderComment]').val('Payment № '+obj.id);
$('#assistForm').submit();
},
processData: false,
beforeSend: function() {
return true;
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR + textStatus + errorThrown);
}
});
return false;
});

Может, как-то так будет работать? Хотя на самом деле мне кажется, что подход изначально неверный, но могу и ошибаться.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy