Using dropzone.js with meteor.js

前端 未结 3 757
旧巷少年郎
旧巷少年郎 2021-02-09 18:53

I am confused about something. I am trying to use the dropzone.js meteor package (http://atmospherejs.com/dbarrett/dropzonejs) with my meteor application but I could not find a

3条回答
  •  名媛妹妹
    2021-02-09 19:14

    I'm assuming, it doesn't show upload progress, because its instant with meteor.

    You are updating mini-mongo location in-browser, so the changes are immediate.

    Meteor DDP then handles the glue to get it to the server, and then pushing those changes to the other clients that might be subscribed. That "instant" update is the meteor magic. Alert yourself, or log to console on success. You can also check the db via MyImages.find().fetch().

    If they are there, all done.

提交回复
热议问题