我正在Ajax.Request
像这样使用 inprototype.js(1.6) :
new Ajax.Request(URL, {method: "get",
onSuccess: cbFn,
onCreate: function(req) {
$("fetchBtn").value = "Fetching..."
},
onFailure: function(req){
console.log(req)
alert("nima")
},
parameters: {"id": pmid}});
但是 有一个错误cbFn
,当cbFn
被 调用时Ajax.Request
,它只是停在有错误的语句中。但是,它只是默默地停止,我在 Firebug 中看不到错误信息。我也试过onFailure
了,但似乎甚至called
失败onSuccess
了。
有人对如何检查cbFn
函数的调试信息有想法吗?谢谢!