摘要: <template> <view> <!-- 扫码页面 --> <!-- #ifndef APP-PLUS --> <view class="wrap"> <view class="u-tips-color"> 请在app中打开 </view> </view> <!-- #endif --> <vi 阅读全文
posted @ 2022-02-25 14:39 飞流川溪 阅读(1713) 评论(0) 推荐(0)
摘要: <template> <view class="about"> <view class="lis"> <view class="li" v-for="(item,index) in 5" :key="index"> {{index}} </view> </view> <view :class="[( 阅读全文
posted @ 2022-02-25 14:38 飞流川溪 阅读(1408) 评论(0) 推荐(0)
摘要: 在写前端页面中,经常会在浏览器运行HTML页面,从本地文件夹中直接打开的一般都是file协议,当代码中存在http或https的链接时,HTML页面就无法正常打开,为了解决这种情况,需要在在本地开启一个本地的服务器。 本文是利用node.js中的http-server,开启本地服务,步骤如下: 下载 阅读全文
posted @ 2021-07-28 15:16 飞流川溪 阅读(100) 评论(0) 推荐(0)