我有一个模板显示带有用户 id 的 QRCode:
<template name="pairDevice">
{{#with currentUser}}
<div id="qrcode"></div>
<div class="key" id="qrcodeValue" style="display: none;">{{id}}</div>
{{/with}}
</template>
我尝试从渲染和帮助程序中设置值,但它总是同样的问题$('#qrcode')
并$('#qrcodeValue')
返回[]
,因为字段还不存在。
Template.pairDevice.rendered = function(){
if (!location.origin) {
location.origin = location.protocol+"//"+location.host;
}
// $('#qrcode').qrcode({width : 128, height :128 ,text : $('#qrcodeValue').html()});
};
Template.pairDevice.helpers({
'id' : function(){
var appUser =Meteor.user();
var value = location.origin + ";" + appUser._id + ";" + appUser.emails[0].address;
$('#qrcode').qrcode({width : 128, height :128 ,text : value});
return value;
}
});
我知道 Blaze 只渲染一次,但是如何在 DOM 完成后让它渲染呢?
谢谢