如何使用prototypejs ajax onSuccess事件调用现有的已定义javascript函数?

时间:2014-05-18 03:30:35

标签: javascript ajax prototypejs

我能找到的所有文档都定义了在ajax构造函数中调用的实际函数,如下所示

new Ajax.Request('/your/url', {
   onSuccess: function(response) {
   // Handle the response content...
}
});

但是我的代码抛出一个错误,说“UnCaught typeError:undefined不是函数” 这是我的代码试图调用现有函数pullComments()。

    function addComment(){
    //  Stringify json 
    var commentStr = $('#commentBox').value;
    var JSONObj = { "dealID" : dealID,
                    "username" : "default",
                    "comment" : commentStr };
    JSONObj = JSON.stringify(JSONObj);
    var JSONComment = encodeURIComponent(JSONObj);
    new Ajax.request("php/savecomment", 
    {
        method: 'POST',
        parameters: "comment=" + JSONComment,
        onSuccess: pullComments()
    });
}

function pullComments(){
    //  Grab the comments for the deal
    var xmlhttp
            ****

1 个答案:

答案 0 :(得分:1)

更改为:

onSuccess: pullComments

您希望将函数的实现传递给'onSuccess'而不是函数的结果。