做民宿要給網(wǎng)站多少合同錢專業(yè)的網(wǎng)站優(yōu)化公司排名
主要介紹了uni-file-picker文件選擇上傳,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
上傳一張:
<template><view class="container example"><uni-forms ref="baseForm" :modelValue="baseFormData" label-position="top"><uni-forms-item label="圖片上傳"><uni-file-picker v-model="imageValue" fileMediatype="image" mode="grid" @select="select" limit="1"></uni-file-picker></uni-forms-item></uni-forms></view>
</template>
export default {data() {return {//圖片imageValue:[],}},methods:{//圖片上傳select(e){const tempFilePaths = e.tempFilePaths;//獲取圖片臨時(shí)路徑const imgUrl=tempFilePaths[0