2014-08-28 55 views
0

今天我嘗試更新我的應用程序以支持1.7.0,但我注意到視圖中的操作處理程序停止了被調用。視圖中的Ember操作在版本1.7.0中停止工作

我的觀點定義如下:

// Ember view for the project partial 
App.ProjectThumbnailView = Ember.View.extend({ 
    templateName: 'partials/_project', 
    didInsertElement: function() {...}, 

    /** 
    * Handles the event when the 'feature project' button is pressed 
    * @param {Project} project The project to be featured 
    */ 
    featureProject: function() { 
    var project = this.get('context'); 
    project.toggleProperty('featured'); 
    project.toggleProperty('abilities.feature'); 
    project.toggleProperty('abilities.unfeature'); 
    project.feature() 
     .then(
      function() {}, 
      function(error) { 
       project.toggleProperty('featured'); 
       project.toggleProperty('abilities.feature'); 
       project.toggleProperty('abilities.unfeature'); 
       App.set('error', { 
        message: I18n.t('error_message_generic_server') 
       }); 
      } 
    ); 
    } 
}); 

模板的諧音/ _project.hbs包含以下按鈕來調用動作:

<button class="btn btn-mini btn-primary right-top" {{action 'featureProject' target='view'}}><i class="icon-star"></i> {{unbound i18n 'feature'}}</button> 

我也試圖把裏面的的featureProject行動行動哈希無濟於事。

這用於在1.6.0版本和之前的1.6版本中完美工作。有什麼我失蹤了嗎?

謝謝。

+0

你可以把一個bin顯示出來嗎?我做了一個箱子,它似乎工作正常。請參閱http://emberjs.jsbin.com/meqef/1/edit – tikotzky 2014-08-28 13:00:58

+0

問題是,我的項目真的很大,我似乎無法用一小部分代碼來重現錯誤,因爲環境不同(模塊等等,...)。 – rtemperv 2014-08-29 07:18:09

+0

嗯....這將是棘手追查。 – tikotzky 2014-08-29 22:03:03

回答

1

您應該在actions哈希中採取行動。 Ember 1.7.0刪除了對查找控制器根對象中的操作的支持。這已被使用一段時間了。

// Ember view for the project partial 
App.ProjectThumbnailView = Ember.View.extend({ 

    actions: { 
     /** 
     * Handles the event when the 'feature project' button is pressed 
     * @param {Project} project The project to be featured 
     */ 
     featureProject: function() { 
     var project = this.get('context'); 
     // blah blah 
     } 
    } 
}); 
+0

基於這個斌http://emberjs.jsbin.com/meqef/1/edit它似乎只是在1.7.0棄用,但仍應該工作,所以我不認爲這是他的問題。 – tikotzky 2014-09-02 19:49:07

+0

你是正確的 - 它已被完全刪除在'1.8.0-beta.1'中,但仍應該在'1.7.0'中被棄用 – 2014-09-02 20:46:43

相關問題