我知道model/collection RESTful
的东西。但我需要在ajax
中进行自定义ampersand.js
来电,但我似乎找不到API
。我应该回到使用简单的旧xmlhttprequest
吗?
答案 0 :(得分:4)
如果使用自定义调用来填充model/collection
,则应考虑使用ajaxConfig
选项。
否则,您可以使用ampersand-sync
使用自己的xhr
模块来抽象xmlhttprequest
,例如:
var xhr = require("xhr")
xhr({
body: someJSONString,
uri: "/foo",
headers: {
"Content-Type": "application/json"
}
}, function (err, resp, body) {
// check resp.statusCode
})