我使用POST方法将JSON数据发送到URL,我正在利用这些数据来呈现页面,我通过下划线渲染页面。有没有办法检索这些数据(以JSON格式)并在AJAX中的另一个var中分配它们并将其作为数据发送?
我正在尝试将数据发送到nodejs服务器以更新Mongo DB。但没有运气......
$(document).ready(function(){
$("#addContact").click(function(){
var responseArea = $('.actionArea');
$.ajax({
url: '/account/:id/added',
type: 'POST',
cache: false,
data: { contactId: this.model.get('_id') },
function onSuccess() {
$responseArea.text('Contact Added');
}, function onError() {
$responseArea.text('Could not add contact');
}
});
});
});
我得到的错误“无法调用方法'获取'未定义”