如何在'插入'中传递字段的默认值形成的?
我正在使用Meteor的软件包:Autoform,Collections2和Simple-Schema。
我的流程是:
无法弄清楚如何使用URL(或任何其他方式)传递参数。 问题是如何使用值初始化表单。
假设我有一个网址:
http://localhost:3000/activity/new/Sport
=============== router.js:
...
Router.map(function () {
...
this.route('newActivity', {
path: '/activity/new/:tag',
data: function() {
Session.set('tag', this.params.tag);
return null;
}
});
...
=============== 模型/ activity.js
...
Activities = new Meteor.Collection("activities", {
schema: {
title: {
type: String,
label: 'название'
},
...
tag: {
type: String,
label: 'тэг'
}
}
});
===== 模板/ avtibity.js
...
Template.newActivity.helpers({
defaultTag: function() {
return Session.get('tag');
}
});
...
===== 模板/ activity.html
...
<template name="newActivity">
<h1>Create new Activity!</h1>
{{#autoForm collection="Activities" id="insertActivityForm" type="insert"}}
{{> afQuickField name="title"}}
...
{{> afQuickField name="tag" value=" ?????? "}} // ? {{defaultTag}}
ho ho ho {{defaultTag}}
{{/autoForm}}
</template>
```
答案 0 :(得分:7)
感谢Eric Dobbertin: