- app onLaunch的时候获取了用户定位信息 并赋值给了全局变量index,onshow没值?
app.ts onlaunch //获取用户的定位信息 if(this.globalData.loction.lng == 0){ wx.getLocation({ success: async (res: any) => { mapApi.getUsermap(res.latitude, res.longitude).then((res: any) => { //全局变量 this.globalData.loction.city = res.data.result.address_component.city; this.globalData.loction.lat = res.data.result.ad_info.location.lat; this.globalData.loction.lng = res.data.result.ad_info.location.lng; //去掉156国家码 let newAdcode = res.data.result.ad_info.city_code.slice(3) this.globalData.loction.adcode = parseInt(newAdcode) ; }) } }) } index.ts onshow //获取手机导航高度 设置地区 this.setData({ navBarHeigth: app.globalData.menuHeight, loction:app.globalData.loction.city, adcode:app.globalData.loction.adcode }) 没有值 要刷新一哈 怎么处理啊!?
2022-10-27 - 请问data里怎么定义他的数据类型?
我全局定义了个 D.TS 数据类型文件 如下 interface IWechatCodeOutDto{ errCode?: string, // errMsg?: string, // session_Key?: string, // openId?: string, // unionId?: string, // } 我要如何写才对 下面是不对的 Page({ data:{ test:IWechatCodeOutDto } })
2022-10-13 - 编译提示找不到依赖 我的是TS 文件 他默认去找js 文件 昨天是好的 今天更新了开发工具就提示?
[图片][图片]import { TostFn } from '../../utils/util'
2022-10-10 - ts+less模板小程序生成二维码import 引入模块到底怎么搞的 老是提示找不到?
[图片][图片][图片]
2022-09-22 - 这个是什么意思?
WAServiceMainContext.js?t=wechat&s=1662598156799&v=2.25.4:1错误:调用服务:失败9301002调用a ocr(tempFilePath:string,type:string){ let that = this ; console.log(type,"----") utils.showLoading('正在识别信息') wx.serviceMarket.invokeService({ service: 'wx79ac3de8be320b71', api: 'OcrAllInOne', data:{ img_url: new wx.serviceMarket.CDN({ type: 'filePath', filePath: tempFilePath, }), data_type:3, ocr_type:type=="business"?"1":3 } }).then((res: any)=>{ console.log( res ) if(res.errMsg != "invokeService:ok"){ wx.hideLoading() utils.showTost('识别错误请重新上传') return } if(type == "business" ){}})
2022-09-08 - wx.serviceMarket 不存在?
[图片] 基础库2.25.4
2022-09-07 - 微信开发者工具点版本储存了后新写的代码不见了!!!
- 当前 Bug 的表现(可附上截图) [图片] [图片] - 预期表现 你看记录 我要怎么搞回来 第一次用 - 复现路径 .... - 提供一个最简复现 Demo ....
2019-06-24 - setData 报错
[图片] [图片]
2019-06-20