gpt4 book ai didi

javascript - 直接从空格键访问模板实例对象属性

转载 作者:行者123 更新时间:2023-11-30 08:35:13 25 4
gpt4 key购买 nike

作为the Meteor docs state ,

A template instance object represents an occurrence of a template in the document. It can be used to access the DOM and it can be assigned properties that persist as the template is reactively updated. [...] you can assign additional properties of your choice to the object.

如何从 Spacebar 访问这些属性模板?

必须定义只做一些事情的助手是很麻烦的

return Template.instance().myProperty

最佳答案

就像@apendua 在评论中说的,你可以使用全局助手,这对我有用:

Template.mainPage.onCreated(function(){
this.test = new ReactiveVar('stackoverflow');
});

Template.registerHelper('instance', function(context, options) {
return Template.instance()[context].get();
});

在 HTML 中

{{instance 'test'}}

您也可以使用 Template.currentData()

编辑

根据 this article你可以用 HTML 做类似的事情:

{{Template.instance.test.get}}

所以不需要全局助手,并且可以通过空格键访问它所以不需要助手

关于javascript - 直接从空格键访问模板实例对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32043826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com