<image :src="item">
that[array] = that[array].concat(res.tempFilePaths)
that.$forceUpdate();
这样可以回显到V-for循环出来的image
<image :src="sampleArray[0]">
that.sampleArray[index] = res.tempFilePaths[0]
that.$forceUpdate();
这样不能回显图片
<image :src="item">
that[array] = that[array].concat(res.tempFilePaths)
that.$forceUpdate();
这样可以回显到V-for循环出来的image
<image :src="sampleArray[0]">
that.sampleArray[index] = res.tempFilePaths[0]
that.$forceUpdate();
这样不能回显图片
1 个回复
d***@163.com (作者)
that[array] = that[array].concat(res.tempFilePaths)
that.$forceUpdate();
这样可以回显到V-for循环出来的image :src="array.item"
that.sampleArray[index] = res.tempFilePaths[0]
that.$forceUpdate();
这样不能回显图片image :src="sample[0]"