format date error in Ember JS: could not find property on object

限于喜欢 提交于 2019-12-13 20:16:58

问题


Uncaught Error: Handlebars error: Could not find property 'format-date' on object (generated post controller). in ember js


回答1:


This error is thrown when the handlebars template contains a custom helper that is not registered.

Example (look at the console output)

http://emberjs.jsbin.com/gosegede/1/edit

hbs

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

    {{format-date "test"}}

</script>


来源:https://stackoverflow.com/questions/22344373/format-date-error-in-ember-js-could-not-find-property-on-object

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!