0

我使用 POST 方法将 JSON 数据发送到 URL,我利用这些数据来呈现页面,我正在通过 underscorejs 呈现页面。有没有办法检索该数据(以 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'); 
            }
        });
    });
});    

我得到的错误“无法调用未定义的方法'get'”

4

0 回答 0