摘要: 效果:移动和PC端 内容来源于链接https://www.toutiao.com/i6738373341314286088/ 阅读全文
posted @ 2019-09-24 00:21 lwming 阅读(508) 评论(0) 推荐(1) 编辑
摘要: 参考https://www.toutiao.com/i6737657633232126472/ 阅读全文
posted @ 2019-09-23 23:56 lwming 阅读(1019) 评论(0) 推荐(2) 编辑
摘要: uni.chooseImage({ count: 9, success: res => { this.imageList = this.imageList.concat(res.tempFilePaths); console.lo... 阅读全文
posted @ 2019-09-21 10:18 lwming 阅读(5963) 评论(0) 推荐(0) 编辑
摘要: 语法:条件?表达式1:表达式2 。 条件的括号可要可不要的 阅读全文
posted @ 2019-09-14 00:34 lwming 阅读(3922) 评论(0) 推荐(0) 编辑
摘要: 1.在函数之间加上async意味着:函数将返回一个Promise 不断的使用then()链式操作: 2.await的基本语法 函数执行将会在 let result = await promise 这一行暂停,直到Promise返回结果,因此上述代码将会2秒后打印出done! 再看: 调用testRe 阅读全文
posted @ 2019-09-11 00:39 lwming 阅读(657) 评论(0) 推荐(0) 编辑
摘要: url有长度限制,太长的字符串会传递失败,可使用窗体通信、全局变量,或encodeURIComponent等多种方式解决,如下为encodeURIComponent示例的解决方法。 内容来自uniapp官网 阅读全文
posted @ 2019-09-10 16:36 lwming 阅读(3371) 评论(0) 推荐(0) 编辑
摘要: <script> new Vue({ el: '#app', data() { return { clock: '', } }, mounted() { this.$nextTick(() => { setInterval(this.CurentTime, 1000); }) }, methods: { CurentTime() { var getTime = new Date(); var ye 阅读全文
posted @ 2019-09-10 00:20 lwming 阅读(13259) 评论(0) 推荐(0) 编辑
摘要: 在uniapp微信小程序开发中使用textarea,结果发现输入框的问题浮动起来,view无法把他覆盖,设法设置index的值也不生效,所以只能是通过条件v-if或者v-show使其隐藏就可以了 阅读全文
posted @ 2019-09-04 15:49 lwming 阅读(4541) 评论(0) 推荐(0) 编辑
摘要: 在开发中,我们会遇到需求国际化,那么底部tabBar和导航标题navigationBarTitleText就要动态切换: 1.改变底部tabBar: 当动态切换时结果: 阅读全文
posted @ 2019-08-23 11:17 lwming 阅读(24840) 评论(3) 推荐(2) 编辑
摘要: https://ask.dcloud.net.cn/article/35021 阅读全文
posted @ 2019-08-11 20:39 lwming 阅读(1494) 评论(0) 推荐(0) 编辑