-1
$('#save').click(function (e) {
e.preventDefault(); // preventing default click action
$.ajax({
url: '/share',
type: 'post',
contentType: "json",
data: JSON.stringify({
title: $('#title'),
body: $('#body'),
status: 'Published'
}),
success: function (data) {
console.log(data);
$('#{{ form.share_id.name }}').val(data.id);
},
error: function (xhr, textStatus, errorThrown) {
alert(xhr.responseText);
}
});
});
有人能告訴我上面的json stringify如何導致循環引用嗎?json中的循環引用