1

在模式声明中,我有:

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"}}

我希望能够让个人不仅记录问题的位置,还可以拍下注意到的问题。

我的问题:我如何正确设置一个字段,以便它允许用户拍摄和上传照片。

4

1 回答 1

0

这是 Meteor 大放异彩的领域之一——跨桌面和移动浏览器的同构 API。

您需要meteor add mdg:camera在表单中添加一个按钮,并将其单击处理程序设置为运行MeteorCamera.getPicture()

阅读更多https://github.com/meteor/mobile-packages/tree/master/packages/mdg:camera

于 2015-02-05T18:43:49.060 回答