显示对话框在`meteor Js`中不起作用?

时间:2014-03-14 09:17:51

标签: meteor

我需要帮助,因为我使用 meteorJs开发模态对话框当单击添加客户端按钮打开对话框时它无法正常工作但是它无法正常工作请检查我在哪里犯了错误,这是我的代码。

template:
<template name="shedule">
    <button class="btn btn-success addClients">Add Client</button>
</template>

Js code:
Session.setDefault('showclientDialog', false);
template.shedule.events({
    'button #addClient':function(e,t){

         console.log("You pressed Add Client button");
         e.preventDefault();
         Session.set('showclientDialog' , true);
    }
});
template.shedule.showclientDialog = function(){
    return Session.get('showclientDialog');
}

1 个答案:

答案 0 :(得分:1)

我相信这对你有用:

模板:

添加了一个if块来检查会话变量

<template name="shedule">
    <button class="btn btn-success addClients">Add Client</button>
    {{#if showclientDialog}}
        <div class="clientDialogue">Client Dialoge</div>
    {{/if}}
</template>

Js代码:

修复了事件地图以检查选择器是否正确

Session.setDefault('showclientDialog', false);
Template.shedule.events({
    'click .addClients':function(e,t){

         console.log("You pressed Add Client button");
         e.preventDefault();
         Session.set('showclientDialog' , true);
    }
});

Template.shedule.showclientDialog = function(){
    return Session.get('showclientDialog');
}