1

我有一个带有 RestAdapter 的应用程序,它从服务器获取正确的数据:

App.AFile= DS.Model.extend({
  name: DS.attr( 'string' ),
...

App.Store = DS.Store.extend({
  revision: 13,
  adapter: DS.RESTAdapter.extend({url: "myapi"})
});

还有这样的地图:

App.Router.map(function() {
  this.resource('allfiles', { path: '/allfiles' });
  this.resource('onefile', {path: '/onefile/:onefile_id' });

和这样定义的路线:

App.allfilesRoute = Ember.Route.extend({
  model: function()
  {
      return App.AFile.find();
  }
});

App.onefileRoute = Ember.Route.extend({
  model : function(params)
  {
      return App.AFile.find(params.onefile_id);
  }
});

还有那些模板:

 <script type="text/x-handlebars" data-template-name="allfiles">
 {{#each controller}}
    {{#linkTo onefile this}}open{{/linkTo}}
 {{/each}}
 </script>

 <script type="text/x-handlebars" data-template-name="onefile">
   {{name}}
 </script>

它的工作原理是这样的:用户打开应用程序并显示带有名为 open 的链接的 allfiles 模板。该链接打开一个名为 onefile 的模板并将 onefile_id 传递给它。

当我打开应用程序并单击打开时,它可以工作并显示一个文件的正确名称。URL 设置为 #/onefile/1,其中 1 是 onefile_id。所以它工作正常。

但是当我刷新页面(#/onefile/1)时,不再显示名称。

在我返回 id 之前,我已经检查了在 onefileRoute 模型函数中发生了什么,并且它发生 App.AFile 对所有定义的字段都有空值。在应用加载后,这些值会正确填充到 App.AFile 对象中,但不会显示在视图上。

所以看起来 RestAdapter 在视图显示后获取数据。

如何让它发挥作用?

4

1 回答 1

0
App.onefileRoute = Ember.Route.extend({
  model : function(params)
  {
      var m = App.AFile.find(params.onefile_id);
      // at this point m might not be resolved, so name could be empty
      return m;
  },
  afterModel: function(model, transition){
      // at this point it should be resolved, what happens here?
      console.log(model.get('name'));
  }
});

我的猜测是您的端点通过 id 返回模型的错误信息。

于 2013-08-01T00:24:25.600 回答