vue-cli 选项无法选问题
摘要:winpty vue.cmd create admin 这样创建就可以了
阅读全文
posted @
2018-11-21 11:09
chenlw101
阅读(570)
推荐(0) 编辑
async+await一起使用
摘要:/** get 请求 * @param {接口地址} url * @param {请求参数} params */ get(url,params){ return new Promise((resolve,reject) => { wx.request({ url:url, data:params,
阅读全文
posted @
2018-11-13 18:05
chenlw101
阅读(334)
推荐(0) 编辑
小程序打开pdf
摘要:wx.downloadFile({ url:"https://xxxxxx.pdf", success(res){ console.log(res) let data = res.tempFilePath; wx.openDocument({ filePath:data, ...
阅读全文
posted @
2018-11-08 17:28
chenlw101
阅读(2058)
推荐(0) 编辑
wepy打开页面首次不显示,但是数据已经有了
摘要:page页面首次打开异步数据无法通过props传递到子组件 解决:在开发者工具关闭上传代码时自动压缩就解决了,在wepy文档里也有强调
阅读全文
posted @
2018-11-03 09:11
chenlw101
阅读(469)
推荐(0) 编辑