ember.js – 灰烬控制器:没有处理动作

我看了几个小时的相关帖子,但找不到正确的答案来解决我遇到的问题.

我一直收到错误

Uncaught Error: Nothing handled the action ‘edit’. If you did handle the action,this error can be caused by returning true from an action handler in a controller,causing the action to bubble.

我认为控制器处理错误,或者它正在冒泡到错误的路线?

App.EventDetailsController = Ember.ObjectController.extend({
   isEditing: false,actions: {
    edit: function() {
        this.set('isEditing',true);
    },doneEditing: function() {
        this.set('isEditing',false);
    }
    }
});


App = Ember.Application.create();

    App.Router.map(function() {
   // put your routes here
  this.route('events',{path: '/events'});
  this.route('createevent',{path: '/createevent'});
  this.route('eventdetails',{path: ':eventdetails_id'});
});

App.EventsRoute = Ember.Route.extend({
model: function() {
    return events;
}
});

App.EventDetailsRoute = Ember.Route.extend({
model: function(params) {
    return events.findBy('id',params.eventdetails_id);
}
});

有谁知道为什么这不起作用?

解决方法

你可能想要像这样定义你的路线:
App.Router.map(function() {
    this.resource('events',function() {                            // /events         <-- your event listing
        this.resource('event',{path: ':event_id'},function() {    // /events/1       <-- your event details
            this.route('edit');                                     // /events/1/edit  <-- edit an event
        }); 
        this.route('create');                                       // /events/create  <-- create your event
    });
});

但除此之外,请注意动作在路径中冒泡,因此请尝试将动作处理程序移动到EventDetailsRoute.

阅读指南中有关它的部分:http://emberjs.com/guides/templates/actions/#toc_action-bubbling

App.EventDetailsRoute = Ember.Route.extend({
    actions: {
        edit: function() {
            this.set('isEditing',true);
        },doneEditing: function() {
            this.set('isEditing',false);
        },//or maybe better:
        toggleEditing: function() {
            this.toggleProperty('isEditing');
        }
    },model: function(params) {
        return events.findBy('id',params.eventdetails_id);
    }
});

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...