【发布时间】:2015-02-08 04:13:33
【问题描述】:
是否可以使用助手修改记录?
示例:(_id:“CbQvD52iEFXnFML3d”,名称:“somename”,年龄:“20”,视频:“stack.com/link.mp4”)。 我想在将找到的所有记录发送到模板之前对其进行修改。
Records= new Meteor.Collection('records');
Template.test.helpers({
record: function() {
var info = Records.find({age:"20"});
//modify all records found from "stack.com/link.mp4" to "stack.com/link.jpg"
return collection with modified records
}
});
<template name="test">
{{#each record}}
{{name}}
<img src="{{video}}">
{{/each}}
</template>
谢谢!
【问题讨论】:
标签: meteor