在ampersand.js中自定义ajax调用

时间:2016-02-18 12:10:14

标签: javascript ajax ampersand.js

我知道model/collection RESTful的东西。但我需要在ajax中进行自定义ampersand.js来电,但我似乎找不到API。我应该回到使用简单的旧xmlhttprequest吗?

1 个答案:

答案 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
})