0
這個Meteor代碼預計會顯示助手提供的數據,但它現在顯示任何。什麼是錯誤的以及如何解決它?radiogroup not working in meteor template
<template name="options">
<radiogroup>
{{#each values}}
<radio value="{{this.result}}" label="{{this.label}}"></radio>
{{/each}}
</radiogroup>
</template>
編輯
的數據可如果我更改代碼以顯示:
<template name="options">
<div class="twin-group js-radioGroup" data-id={{_id}}>
<ul class="upShift">
{{#each values}}
<li>
<label class="twin-item">
<input type="radio" value={{this.result}}>
<span class="radio-label">{{this.label}}</span>
</label>
</li>
{{/each}}
</ul>
</div>
</template>
你到目前爲止嘗試過什麼?你有沒有收集到無線電組的數據,然後從那裏出發?無線電和無線電元素從哪裏來? – zim
@zim請參閱編輯 –