A+
解决schema2code生成banner页的uni-file-picker无法显示图片的问题
标签: uni-App 最后编辑:2022年1月14日
项目场景:
搭建uni-admin,使用schema2code生成uni-admin后台轮播图展示界面,图片组件未正常显示图片
schema2code生成的代码
<uni-td align="center">
<template v-for="(file, j) in item.imgs">
<uni-file-picker v-if="file.fileType == 'image'" :value="file" :file-mediatype="file.fileType" :imageStyles="imageStyles" readonly></uni-file-picker>
<uni-link v-else :href="file.url" :text="file.url"></uni-link>
</template>
</uni-td>
我的解决方法:
将:value="file"改为v-model="item.imgs[j]",即可正常显示。
如果使用上篇教程的文章改为v-model="file"会抛出
v-model cannot be used on v-for or v-slot scope variables because they are not writable.
的错误
造成原因
未知...
说:来学习一下,应该用得上