<bdo id='7cNL2'></bdo><ul id='7cNL2'></ul>
        <i id='7cNL2'><tr id='7cNL2'><dt id='7cNL2'><q id='7cNL2'><span id='7cNL2'><b id='7cNL2'><form id='7cNL2'><ins id='7cNL2'></ins><ul id='7cNL2'></ul><sub id='7cNL2'></sub></form><legend id='7cNL2'></legend><bdo id='7cNL2'><pre id='7cNL2'><center id='7cNL2'></center></pre></bdo></b><th id='7cNL2'></th></span></q></dt></tr></i><div id='7cNL2'><tfoot id='7cNL2'></tfoot><dl id='7cNL2'><fieldset id='7cNL2'></fieldset></dl></div>
        <legend id='7cNL2'><style id='7cNL2'><dir id='7cNL2'><q id='7cNL2'></q></dir></style></legend>
      1. <tfoot id='7cNL2'></tfoot>

        <small id='7cNL2'></small><noframes id='7cNL2'>

        在 Emberjs 中设置从路由到控制器错误的数据

        时间:2023-09-04

          1. <tfoot id='Es0ch'></tfoot>
              <tbody id='Es0ch'></tbody>
            <legend id='Es0ch'><style id='Es0ch'><dir id='Es0ch'><q id='Es0ch'></q></dir></style></legend>

              <i id='Es0ch'><tr id='Es0ch'><dt id='Es0ch'><q id='Es0ch'><span id='Es0ch'><b id='Es0ch'><form id='Es0ch'><ins id='Es0ch'></ins><ul id='Es0ch'></ul><sub id='Es0ch'></sub></form><legend id='Es0ch'></legend><bdo id='Es0ch'><pre id='Es0ch'><center id='Es0ch'></center></pre></bdo></b><th id='Es0ch'></th></span></q></dt></tr></i><div id='Es0ch'><tfoot id='Es0ch'></tfoot><dl id='Es0ch'><fieldset id='Es0ch'></fieldset></dl></div>

                <small id='Es0ch'></small><noframes id='Es0ch'>

                • <bdo id='Es0ch'></bdo><ul id='Es0ch'></ul>
                  本文介绍了在 Emberjs 中设置从路由到控制器错误的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是 Emberjs 的新手..我正在尝试设置从 Emberjs 路由到控制器的数据内容以在模板中显示..

                  i am a newbie in Emberjs.. I am trying to set data content from Emberjs route to controller to display in template..

                  我遵循了这里的建议..访问控制器函数内的内容 ember

                  i followed the suggestions here.. Access content inside a controller function ember

                  完美运行.. 但现在我收到此错误

                  works perfect.. but now i am getting this error

                  Uncaught Error: Assertion Failed: The value that #each loops over must be an Array. You passed {items: [object Object],[object Object],[object Object],[object Object],[object Object],[object Object], title: current mood}
                  

                  这也是我的代码..

                  http://screencast.com/t/4fXm5n5u9lpH

                  这是我的模板代码

                  http://screencast.com/t/horNlooKx8l

                  任何反馈都将不胜感激

                  谢谢

                  推荐答案

                  你的问题是 https://torid-heat-7210.firebaseio.com/fixed_column.json 返回一个对象 ({}) 其中 {{#each}}helper 需要一个数组 ([]).

                  Your problem is that https://torid-heat-7210.firebaseio.com/fixed_column.json returns an Object ({}) where as {{#each}} helper is expecting an array ([]).

                  您可以如下修改您的 setupController 方法以使其工作:

                  You can modify your setupController method as follows to get it to work:

                  setupController: function(controller){
                    Ember.$.ajax({
                      url: 'https://torid-heat-7210.firebaseio.com/fixed_column.json',
                      type: 'GET'
                    }).done(function(data){
                      controller.set('content', data.items);
                    })
                  }
                  

                  工作解决方案这里

                  这篇关于在 Emberjs 中设置从路由到控制器错误的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何遍历数组并运行 Grunt 任务,将数组中的每个值作为 Grunt 选项传递 下一篇:在 React Js 中过滤 Todo 列表

                  相关文章

                  • <bdo id='3vxPW'></bdo><ul id='3vxPW'></ul>
                  <legend id='3vxPW'><style id='3vxPW'><dir id='3vxPW'><q id='3vxPW'></q></dir></style></legend>

                • <small id='3vxPW'></small><noframes id='3vxPW'>

                    1. <tfoot id='3vxPW'></tfoot>

                      <i id='3vxPW'><tr id='3vxPW'><dt id='3vxPW'><q id='3vxPW'><span id='3vxPW'><b id='3vxPW'><form id='3vxPW'><ins id='3vxPW'></ins><ul id='3vxPW'></ul><sub id='3vxPW'></sub></form><legend id='3vxPW'></legend><bdo id='3vxPW'><pre id='3vxPW'><center id='3vxPW'></center></pre></bdo></b><th id='3vxPW'></th></span></q></dt></tr></i><div id='3vxPW'><tfoot id='3vxPW'></tfoot><dl id='3vxPW'><fieldset id='3vxPW'></fieldset></dl></div>