uni-app
前端0609
这个作者很懒,什么都没留下…
展开
-
uniapp开发微信小程序【Bug】记录
使用uniapp开发微信小程序【Bug】合集在HBuilder x运行正常,但是运行到微信开发者工具就报错快速找到错误位置->右键选择格式化文档1.报错:Bad attrdatawith message使用的是嵌套数组:data:data() { return { boxArray: [{ id: 1, type: 'aa', items: [{ name: 'dd' }] }, { id: 2, type: 'bb', it原创 2021-11-19 12:18:28 · 2713 阅读 · 0 评论 -
Vue/uniapp项目中,使用Base64转码和解码
Vue/uniapp项目中,使用Base64转码和解码将字符串型转换为Base64,要做到兼容引入Base64,没有引入js-base64(1)引入Base64.jsnpm install base-64(2)在使用页面的<script></script>中引入:import Base64 from 'base-64'(3)在逻辑代码中使用:let keywords = 'abc@666'let key = Base64.encode(keywords) //原创 2021-11-12 10:07:27 · 6593 阅读 · 0 评论 -
[渲染层网络层错误] Failed to load local image resource undefined the server responded with a status of 500
[渲染层网络层错误] Failed to load local image resource /page/login/undefined the server responded with a status of 500使用uni-app开发微信小程序,在HBuilder和微信开发者工具图片都显示正常,但是在微信开发者工具编译加载图片时,报图片为undefined原因:页面初次加载时,图片还没加载出来,为空,使用计算属性Compute()解决。使用页面HTML代码 <view class=原创 2021-11-03 11:04:49 · 4307 阅读 · 0 评论 -
uni-app实现简单的倒计时
1.text.vue 页面代码<view class="will-back-after">Will back after<text>{{countdownTime}}s</text></view>2.data()里面声明countdownTime:data() { return { countdownTime: 5 } }3.methods里面写方法:我这里是倒计时5秒后返回首页。getCountdownTime() {原创 2021-08-26 16:23:16 · 3726 阅读 · 0 评论