gpt4 book ai didi

meteor - 如何将 meteor 模板与 Bootbox 一起使用?

转载 作者:行者123 更新时间:2023-12-02 03:44:47 26 4
gpt4 key购买 nike

如何将 Meteor 模板与 bootboxjs 库一起使用?

即,我有以下模板

test.html:

<template name="test">
<input type="text" name="testtext"/>
</template>

它有一些事件,

test.js:

Template.test.events({
'keyup input[name="testtext"]' : function () { console.log('key up in testtext'); }
});

如何使用模板生成带有事件的引导框模式?

最佳答案

您可以将 Blaze.toHTML(Template.your_dialog_template) 传递给 bootbox.dialog() 调用的“messages”属性,但事件不起作用。

因此,技巧可能是在对话框打开后使用 Blaze.render() 将模板注入(inject)到对话框中。

bootbox.dialog({
title: "Title",
message: '<span/>', // bootbox doesn't accept an empty value
buttons: {
success: {
label: "Save",
className: "btn-success",
callback: function () {
// do tomething

}
}
}
}
);

// Inject your template inside the dialog box
Blaze.render(Template.dialog_create_cluster, $('.bootbox-body')[0])

关于meteor - 如何将 meteor 模板与 Bootbox 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19646196/

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