【发布时间】:2016-06-10 10:06:55
【问题描述】:
在过去 2 年多的时间里,我与 AngularJS 进行了大量合作,现在开始使用 MeteorJS 1.2,我觉得 blaze 模板层的某些方面非常不直观,但可能有一个简单的解决方案。
我想要一个“创建投票”表单,其中包含以下字段:
- 问题,文本字段
- 投票选项,文本字段
- 添加选项、按钮
- 选项列表,
<li>s 基于本地options数组的转发器 - 列表项有一个删除按钮
本质上,我希望能够填充投票选项字段,单击“添加选项”并让此选项以只读方式(纯文本)呈现在投票选项文本字段下方的列表中继器中。
我目前的问题是,如果不使用 ReactiveArray 之类的东西,当我在本地数组变量 options 中推送项目时,blaze 模板不会重新呈现。
解决这个问题的正确方法是什么?
代码如下:
poll.create.html模板:
<template name="pollCreate">
<form class="form form--create">
<section class="form__section">
<!-- Question Field -->
<input class="form__field" type="text" name="question" required>
<!-- Poll Options -->
<ul class="form__list">
<!-- Poll option form field -->
<li class="form__list-item form__list-item--creator">
<input class="form__field" type="text" name="pollOption">
<button class="form__button--add" type="button">+</button>
</li>
<!-- Render the options added above -->
{{#each option in optionList}}
<li class="form__list-item--option" data-index="{{option.index}}">
<span class="form__list-item-value">{{option.label}}</span>
<button type="button" class="form__button--delete">×</button>
</li>
{{/each}}
</ul>
</section>
<button class="form__button--submit" type="submit">Create Poll</button>
<button class="form__button--reset" type="reset">Clear Fields</button>
</form>
</template>
poll.create.client.js(Polls = new Mongo.Collection("polls") 在服务器文件中)
// Setup
Template.pollCreate.onCreated(function () {
// Local poll variable to capture the options in.
this.options = [
{ index: 0, label: 'BurgerBurger' },
{ index: 1, label: 'BetterBurger' }
];
});
// Events
Template.pollCreate.events({
/**
* Adds an option to the local array for saving as part of the submit in the Posts.insert call.
* @param event
* @param instance
*/
'click .form__button--add': function ( event, instance ) {
event.preventDefault();
// Get current option element
var option = instance.find('[name="pollOption"]');
// Store in a local array
instance.options.push({
index: instance.options.length,
label: option.value
});
// Clear field so it's ready for another option
option.value = '';
},
/**
* Delete an existing option.
* @param event
* @param instance Template.instance
*/
'click .form__button--delete': function ( event, instance ) {
event.preventDefault();
var listItemElement = event.target.parentNode;
var itemIndex = instance.$(listItemElement).data('index');
// Delete option from reactive source array
instance.options.splice(itemIndex, 1);
},
/**
* Submit the Poll Create form which will run Polls.insert with the question and options
* @param event
* @param instance
*/
'submit .form--create': function ( event, instance ) {
event.preventDefault();
var question = instance.find('[name="question"]');
var options = instance.options;
var poll = {
question: question.value,
options: options
};
Polls.insert(poll);
}
});
// Helpers
Template.pollCreate.helpers({
optionList: function () {
const instance = Template.instance();
return instance.options;
}
});
我可以看到 instance.options 数组值在我推入或拼接选项时发生变化,但它似乎没有重新渲染模板并且选项列表永远不会改变。
我在这里做错了什么?
【问题讨论】:
标签: arrays templates meteor reactive-programming meteor-blaze