我对Meteor很新,但真的很喜欢它,这是我正在构建的第一个被动应用程序。
我想知道一种方法,我可以在用户点击时删除.main
元素,或者更好的方法是删除现有模板(包含主要内容),然后用另一个流星模板替换?在html / js应用程序(用户点击 - >从dom中删除el)这样的东西会简单明了,但这里并不是那么清楚。
我只是想学习并了解最佳实践。
//gallery.html
<template name="gallery">
<div class="main">First run info.... Only on first visit should user see this info.</div>
<div id="gallery">
<img src="{{selectedPhoto.url}}">
</div>
</template>
//gallery.js
firstRun = true;
Template.gallery.events({
'click .main' : function(){
$(".main").fadeOut();
firstRun = false;
}
})
if (Meteor.isClient) {
function showSelectedPhoto(photo){
var container = $('#gallery');
container.fadeOut(1000, function(){
Session.set('selectedPhoto', photo);
Template.gallery.rendered = function(){
var $gallery = $(this.lastNode);
if(!firstRun){
$(".main").css({display:"none"});
console.log("not");
}
setTimeout(function(){
$gallery.fadeIn(1000);
}, 1000)
}
});
}
Deps.autorun(function(){
selectedPhoto = Photos.findOne({active : true});
showSelectedPhoto(selectedPhoto);
});
Meteor.setInterval(function(){
selectedPhoto = Session.get('selectedPhoto');
//some selections happen here for getting photos.
Photos.update({_id: selectedPhoto._id}, { $set: { active: false } });
Photos.update({_id: newPhoto._id}, { $set: { active: true } });
}, 10000 );
}
答案 0 :(得分:11)
如果你想隐藏或显示元素条件,你应该使用Meteor的反应行为:为你的模板添加一个条件:
<template name="gallery">
{{#if isFirstRun}}
<div class="main">First run info.... Only on first visit should user see this info.</div>
{{/if}}
<div id="gallery">
<img src="{{selectedPhoto.url}}">
</div>
</template>
然后在模板中添加一个帮助器:
Template.gallery.isFirstRun = function(){
// because the Session variable will most probably be undefined the first time
return !Session.get("hasRun");
}
并在点击时更改操作:
Template.gallery.events({
'click .main' : function(){
$(".main").fadeOut();
Session.set("hasRun", true);
}
})
你仍然可以淡出元素但是然后不是隐藏它或移除它并让它回到下一个render
,你确保它永远不会回来。
通过更改Session
变量来触发渲染,该变量是被动的。
答案 1 :(得分:3)
我认为使用条件模板是一种更好的方法,
{{#if firstRun }}
<div class="main">First run info.... Only on first visit should user see this info.</div>
{{else}}
gallery ...
{{/if}}
你必须让firstRun成为一个会话变量,这样它才会触发DOM更新。
答案 2 :(得分:2)
Meteor is reactive。在数据更改时,您无需编写用于重绘DOM的逻辑。只需编写单击X按钮的代码,即可从数据库中删除Y.而已;您不需要为任何界面/ DOM更改或模板删除/重绘或任何其他问题而烦恼。每当支持模板的数据发生变化时,Meteor会自动使用更新的数据重新呈现模板。这是Meteor的核心功能。