摘要:
url有长度限制,太长的字符串会传递失败,可使用窗体通信、全局变量,或encodeURIComponent等多种方式解决,如下为encodeURIComponent示例的解决方法。 内容来自uniapp官网 阅读全文
摘要:
<script> new Vue({ el: '#app', data() { return { clock: '', } }, mounted() { this.$nextTick(() => { setInterval(this.CurentTime, 1000); }) }, methods: { CurentTime() { var getTime = new Date(); var ye 阅读全文