// :src识别不了,使用{{}}传变量 <img class="img" src="{{item.menuIconUrl}}" alt="" />
小程序嵌套的h5页面 img标签图片显示不出来?vue框架 v-bind:src的 是后台动态返回的图片
2021-11-04可能不识别v-bind语法导致的 // :src识别不了,使用{{}}传变量 <img class="img" src="{{item.menuIconUrl}}" alt="" /> <div class="text">{{ item.menuName }}</div> // v-if识别不了 改为opacity <div class="isNew" style="opacity: {{item.isNew}}">新</div>
h5打开小程序:vue使用wx-open-launch-weapp,动态图片地址无法显示?<wx-open-launch-weapp id="launch-btn" username="gh_***********" path="/pages/index/index.html"> <script type="text/wxtag-template"> <style>.img { width: 100%; height: 107.5px; }</style> <!-- 下方直接写死静态链接,可以渲染 --> <img src="https://....." class="img"/> <!-- testImg为vue变量无法显示!!! --> <img :src="testImg" class="img"/> </script> </wx-open-launch-weapp> vue使用wx-open-launch-weapp,动态图片地址无法显示,静态资源就可以,什么原因?
2021-11-04