我有component
来调用view
。在view
内,我想访问component
手柄模板中view
的媒体资源。有没有办法做到这一点?我尝试过直接访问它,但只使用{{propertyName}}
,但这会导致Uncaught TypeError: undefined is not a function
错误。
答案 0 :(得分:0)
View在可用的工作示例here下面继承了组件上下文:
<script type="text/x-handlebars" data-template-name="views/person">
Inside View: {{name}}
</script>
<script type="text/x-handlebars" data-template-name="components/app-person">
Component: {{name}}<br/>
{{view App.PersonView}}
</script>