提问者:小点点

Ember. js:未捕获的TypeError:无法读取转换到时未定义的属性'enter'


我有一个相当简单的Ember. js应用程序。在视图中,我将其称为this.transtionTo,这给了我错误:

无法读取未定义的属性'enter'

错误出现在第24596行的ember. js中,其中当前状态未定义

以下是我的应用程序的相关部分:

window.Plan = Ember.Application.create({});

        Plan.Router = Ember.Router.extend({
        location: 'hash'
    });

    Plan.IndexController = Ember.ObjectController.extend({

    });


    Plan.Router.map(function() {
        this.route('application', { path: '/' })
        this.route('index', { path: "/:current_savings/:monthly_deposit/:time_horizon" });
    });

    Plan.ApplicationRoute = Ember.Route.extend({
        redirect: function(){
            this.transitionTo('index', 200, 200, 200);
        }
    })

    Plan.IndexRoute = Ember.Route.extend({
        model: function(params) {
            var result = this.store.find('calculation', params).then(function(data) {
                return data.content[0];
            });

            return result;
        }
    });

    Plan.CurrentSavingsTextField = Ember.TextField.extend({
        focusOut: function() {
            this.transitionTo('index', 150, 200, 200);
        }
    });

    Plan.MonthlyContributionTextField = Ember.TextField.extend({
        focusOut: function() {
            this.transitionTo('index', 150, 200, 200);
        }
    });

    Plan.TimeHorizonTextField = Ember.TextField.extend({
        focusOut: function() {
            this.transitionTo('index', 150, 200, 200);
        }
    });

Plan.Calculation = DS.Model.extend({
    target_goal: DS.attr('number'),
    target_return: DS.attr('number'),
    expected_return: DS.attr('number'),
    downside_probability: DS.attr('number')
});

Plan.ApplicationAdapter = DS.RESTAdapter.extend({
    namespace: 'plan/' + window.targetReturnId
});

超文本标记语言:

<script type="text/x-handlebars" data-template-name="index">

    <div>
        <div>Starting Balance: {{view Plan.CurrentSavingsTextField size="10"}}</div>
        <div>Monthly Contribution: {{view Plan.MonthlyContributionTextField size="10"}}</div>
        <div>Time Horizon: {{view Plan.TimeHorizonTextField size="10"}}</div>
    </div>
    <div>
        <span>Plan Goal: {{target_goal}}</span>
        <span>Required Return: {{target_return}}</span>
        <span>Exp Return:  {{expected_return}}</span>
        <span>Downside Probability: {{downside_probability}}</span>
        <span>Time Horizon: {{time_horizon}}</span>
    </div>

</script>

这一回应是:

{
   "calculations":[
      {
         "id":10,
         "target_goal":3107800.0,
         "target_return":0.089,
         "expected_return":0.0708,
         "downside_probability":0.0489
      }
   ]
}

该应用程序按预期工作,直到我专注于文本字段,然后我得到错误。

余烬:1.5.1

余烬数据: 1.0.0-beta.8.2a68c63a

车把:1.2.1

jQuery:1.11.1


共2个答案

匿名用户

过去的主要人物2k是完全错误的,我错过了关于过渡的声明。我道歉。

不支持从组件转换到(至少从我能找到的任何留档)

您将希望从组件中发送一个操作并在控制器或路由中捕获它。

Plan.CurrentSavingsTextField = Ember.TextField.extend({
    focusOut: function() {
        this.sendAction('go', 199, 200, 201);
    }
});


Plan.IndexRoute = Ember.Route.extend({
    model: function(params) {
        var result = this.store.find('calculation', params);
      //if you just wanted the first object
     // result.then(function(collection){
     //   return collection.get('firstObject');
     // });
        return result;
    },
  actions:{
    go: function(a, b, c){
      console.log('transition');
      this.transitionTo('index',a,b,c);
    }
  }
});

http://emberjs.jsbin.com/OxIDiVU/749/edit

匿名用户

这个问题很古老,但就我的谷歌搜索而言,它似乎仍然没有答案。在玩了一下(Ember 0.13.0)之后,我能够让以下代码从组件内部工作:

this.get('_controller').transitionToRoute('index', 150, 200, 200);

控制器前面的_确实感觉有点像黑客,用户区代码不应该真正访问它。get('控制器')确实返回了完全不同的东西。

我确实同意从视图(组件)导航不是最佳实践,但对于我的用例,我有几个组件可以放入仪表板进行绘图等,这是完美的,而不是调用控制器操作。它帮助我将所有内容隔离在单个组件中。