upload_video.js 790 B

123456789101112131415161718192021222324252627282930
  1. const {
  2. baseUrl
  3. } = require("../../utils/func/request");
  4. //单视频上传 file为上传文件暂存地址对象
  5. const api = '/upload/video'
  6. const upload_video = (file) => {
  7. return new Promise((reslove) => {
  8. wx.uploadFile({
  9. url: baseUrl + api,
  10. filePath: file.tempFilePath,
  11. name: 'file',
  12. success(res) {
  13. reslove({
  14. ...file,
  15. url: JSON.parse(res.data).data,
  16. relative_url: JSON.parse(res.data).data
  17. })
  18. },
  19. fail(err) {
  20. wx.showToast({
  21. title: '视频上传失败',
  22. icon: 'none',
  23. })
  24. }
  25. });
  26. })
  27. }
  28. module.exports = upload_video