0

(这里是js新手)

我重载了RESTAdapter

/*
  The default RESTAdapter in the application.

  An instance of this object will be created automatically.
*/

MyApp.Adapter = DS.RESTAdapter.extend({
    ajax: function(url, type, hash) {
        var ajax_reply = this._super(url, type, hash);
        console.log('ajax_reply (promise) -> '); console.log(ajax_reply);
        return ajax_reply;
    }
});

现在我得到了promise我可以在控制台中看到的:

承诺

我想挂钩该.then方法,以便我可以显示 jsonajax 调用返回的数据,但不会干扰RESTAdapter. 例如,RESTAdapter.find方法是:

  find: function(store, type, id) {
    var root = this.rootForType(type), adapter = this;

    return this.ajax(this.buildURL(root, id), "GET").
      then(function(json){
        adapter.didFindRecord(store, type, json, id);
    }).then(null, DS.rejectionHandler);
  },

我想在控制台中查看通过该.then方法传递的所有 json 回复。我怎样才能“钩”入承诺?

4

2 回答 2

2

像这样的东西应该工作:

MyApp.Adapter = DS.RESTAdapter.extend({
  ajax: function(url, type, hash) {
    var ajaxPromise = this._super(url, type, hash);
    ajaxPromise.then(function(json){
      console.log(json);
    });
    return ajaxPromise;
  }
});
于 2013-06-14T18:38:40.633 回答
1

要记录所有.ajax()回复,请按照@LukeMelia 的建议进行操作。

要记录对特定MyApp.Adapter.ajax()呼叫的响应,请尝试:

MyApp.Adapter.ajax(url, type, hash).then(function(json) {
    console.log(json);
}, function() {
    console.log('.ajax error');
});
于 2013-06-14T19:16:01.610 回答