newmiracle
newmiracle
  • 发布:2023-07-23 18:18
  • 更新:2024-11-30 08:57
  • 阅读:894

uni-file-picker 怎么设置默认图片啊

分类:uni-app

uni-file-picker 怎么设置默认图片啊 我用上传保存了图片 然后第二次打开要编辑呀 然后编辑 图片都显示不出来了

2023-07-23 18:18 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

<uni-file-picker :value="fileLists" file-mediatype="image"></uni-file-picker>  
有个value属性,值可以参考  
fileLists: [{  
    url: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/b7c7f970-517d-11eb-97b7-0dc4655d6e68.jpg',  
    extname: 'png',  
    name: 'shuijiao.png'  
}]  
  • 1***@qq.com

    这个不行啊,还有没有其他方法啊,求

    2023-11-29 20:57

  • 9***@qq.com

    回复 1***@qq.com: 搞定没?

    2024-01-10 10:48

  • 陈富贵

    回复 1***@qq.com: 将:value="fileLists" 改成v-model="fileLists"

    2024-02-13 22:52

q***@qq.com

q***@qq.com

就这个破问题一年了还没解决吗,v-model :value 都试了,全不行,value按官方给的连图片占位都没有,直接给图片数组还有占位,但又不加载图片。
[
{
"name":"file.txt",
"extname":"txt",
"url":"https://xxxx",
// ...
}
]

套马杆的套子

套马杆的套子 - 没有解决不了的问题,只有解决不完的问题

上面是:value="fileLists",fileLists里这么用

[{  
                        fileID: index,  
                        url: 'xxxxxxxxxxxxx'  
                    }]
g***@live.com

g***@live.com

<uni-file-picker v-model="imageValue" fileMediatype="image" mode="grid" @select="select"
@progress="progress" @fail="fail" file-extname="png,jpg" :limit="1" />

const imageValue = ref([]);
imageValue.value.push({
url:profile.avatar,
name:'avatar',
extname: profile.avatar.split(".").pop(),
fileID: profile.avatar,
fileType: "image",
image: {width: 450, height: 450, location: profile.avatar},
path:profile.avatar,
status: "success",
})

上面的方法都不管用。我把能加的属性都加上了。还是不显示。 value v-model 也切换着用过了。并不起作用 onMounted / onLoad 都切换着用了。没有效果。
我是在typescript 模式下测试的。

要回复问题请先登录注册