在jquery中就是这样。
我想要一些作为成功参数的东西,但它是在调用函数时运行的,而不是在我得到响应后运行。
示例(oajax 是开放身份验证的 ajax 扩展)
$.oajax({
url: url,
jso_provider: "facebook", // Will match the config identifier
jso_scopes: false, // List of scopes (OPTIONAL)
dataType: 'json',
success: function(data) {
fbposts=data.data
//a bunch of code irellevant for the question
},//success done
error: function() {
console.log("ERROR Custom callback()");
}
})
};