私はEmberコントローラで約束を守るのに苦労しています。私はJSBIN hereEmberと約束を使用
上の問題の例を作った説明するために
もここエンバーコードが含まれていました。
App.IndexController = Ember.Controller.extend({
result_of_request: 'nothing',
first_request: function() {
// create a promise which is immediately resolved
var promise = new Ember.RSVP.Promise(function(resolve, reject){
resolve("first resolved");
});
// once the promise has resolved it should call the next function?
promise.then(function(data) {
// does log the data (has resolved)...
console.log("data is : " + data);
// but neither this
this.set("result_of_request", "first");
// nor this work
second_request();
});
}.property(),
second_request: function() {
console.log("second request");
}.property()
});
を何かアドバイスをいただければ幸いです。
'this'はコールバック内のコントローラではなく、' second_request'は関数(変数)ではないメソッド(プロパティ)です。 – Bergi