uniapp
qfCSDN
前端小学徒
展开
-
uniapp出现错误:app.js类型错误
typeError: cannot read property ‘mark’ of undefined勾选 小程序的 增强编译是使用uniapp的话 不能直接修改 编译后的文件 project.config.json修改uniapp项目中的 manifest.json打开增强编译"enhance": true "mp-weixin": { /* 微信小程序特有相关 */ "appid": "wxfb52f2d7b2f6123a", "setting": { "url原创 2021-05-26 17:02:25 · 4744 阅读 · 0 评论 -
uniapp小程序使用getUserProfile()获取用户信息的方法,解决小程序异步请求的问题。
<button class="user_btn" open-type="getUserProfile" @tap="getUserProfile">去登录</button>在获取用户信息成功的回调函数中调用下一个函数,下一个函数使用拿到的数据发送请求获取token,实现登录。获取用户信息: async getUserProfile() { await wx.getUserProfile({ desc: "用于完善用户资料", //异步请求:回调函数原创 2021-04-09 14:12:58 · 3612 阅读 · 0 评论 -
uniapp开发小程序,v-for 列表渲染内部,index 异常 或 item 异常问题
以商品大图预览为例:index 异常 的时候,传递 item.id ,需要时内部配合 findIndex() 查找索引。item 异常的时候,传递 index,内部通过 数组[index] 获取 item 的数据。原创 2021-04-02 15:56:46 · 1018 阅读 · 0 评论