Heim  >  Artikel  >  WeChat-Applet  >  So implementieren Sie die Video-Upload-Funktion in der Entwicklung kleiner Programme

So implementieren Sie die Video-Upload-Funktion in der Entwicklung kleiner Programme

王林
王林nach vorne
2020-12-17 09:07:574209Durchsuche

So implementieren Sie die Video-Upload-Funktion in der Entwicklung kleiner Programme

Anleitung:

Da die offizielle API bereitgestellt wird, können wir sie durch direkten Aufruf implementieren.

(Teilen von Lernvideos: Programmiervideo)

Der spezifische Code lautet wie folgt:

index.wxml

 <view class="page-body-info">
      <block wx:if="{{src === &#39;&#39;}}">
        <view class="image-plus image-plus-nb" bindtap="chooseVideo">
          <view class="image-plus-horizontal"></view>
          <view class="image-plus-vertical"></view>
        </view>
        <view class="image-plus-text">添加视频</view>
      </block>
      <block wx:if="{{src != &#39;&#39;}}">
        <video src="{{src}}" class="video"></video>
      </block>
    </view>

index.js

Page({
  data: {
    src: &#39;&#39;
  },
 //选择视频
  chooseVideo: function() {
    var that = this
    wx.chooseVideo({
      success: function(res) {
        that.setData({
          src: res.tempFilePath,
        })
      }
    })
  },
  //上传视频 目前后台限制最大100M,以后如果视频太大可以在选择视频的时候进行压缩
  uploadvideo: function() {
    var src = this.data.src;
    wx.uploadFile({
      url: &#39;http://172.16.98.36:8080/upanddown/upload2&#39;,//服务器接口
      method: &#39;POST&#39;,//这句话好像可以不用
      filePath: src,
      header: {
        &#39;content-type&#39;: &#39;multipart/form-data&#39;
      },
      name: &#39;files&#39;,//服务器定义的Key值
      success: function() {
        console.log(&#39;视频上传成功&#39;)
      },
      fail: function() {
        console.log(&#39;接口调用失败&#39;)
      }
    })
  }
})

Verwandte Empfehlungen: Mini-Programmentwicklungs-Tutorial

Das obige ist der detaillierte Inhalt vonSo implementieren Sie die Video-Upload-Funktion in der Entwicklung kleiner Programme. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:csdn.net. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen