在模式声明中,我有:
CollectionName.attachSchema(new SimpleSchema({
issue: {
type: String,
label: "Describe the issue you noticed",
max:256
},
location: {
label: "Place a marker on your approximate location",
type: String,
autoform: {
type: 'map',
afFieldInput: {
type: 'map',
autolocate: true,
zoom:16
}
}
}
我想允许用户在此插入表单上拍照
{{> quickForm collection="CollectionName" id="inserttoCollection" type="insert"}}
我希望能够让个人不仅记录问题的位置,还可以拍下注意到的问题。
我的问题:我如何正确设置一个字段,以便它允许用户拍摄和上传照片。