你console.log(res)里的res给报错信息了。
我想问下为什么我想获取数据库信息 这没有反应 只给我报警告呀?[图片][图片]
2022-07-25登陆公众平台的时候小程序和小游戏就不一样。
官方审核小程序,如何界定是小程序还是小游戏?如题,官方审核小程序,如何界定是小程序还是小游戏?没找到相关的官方文档。
2022-07-25你这个不是onclick都没写全吗
应为表达式1109怎么办呢?[图片]这个应为表达式 ts1109什么意思,怎么办
2022-07-25应该会有一个状态传进来吧?可以单独写个JS函数维护一下。
如何再添加多个状态?如何在此条件处再添加而外的条件? [图片]
2022-07-25具体什么内容,真机没有复现这个问题。
wx.showModal内容中有#不会显示吗?如题,开发者工具上可以显示,真机上面不显示
2022-07-25initAppData里面是什么?方便给一下代码片段吗
setData修改了数据,页面为什么没有更新?// app.js initAppData() { return new Promise((resolve, reject) => { this.getVersion().then(res => { // 版本 console.log('版本:' + this.globalData.appletsVersion) if (res) this.getLocation().then(res => { // 经纬度 console.log('经纬度:' + this.globalData.location.latitude + ',' + this.globalData.location.longitude) if (res) this.getStoreList().then(res => { // 门店 console.log('门店:' + this.globalData.storeInfo.storeName) resolve(true) }) }) }) }) }, getLocation() { let that = this return new Promise((resolve, reject) => { wx.getLocation({ type: "wgs84", success(res) { var location = { latitude: res.latitude, longitude: res.longitude } that.globalData.location = location resolve(true) }, fail(err) { // 获取经纬度失败 reject(err) } }) }) }, //获取门店列表 getStoreList() { return new Promise((resolve, reject) => { resolve(true) // 涉及到接口调用,先直接resolve(true) }) }, // 获取小程序版本 getVersion() { return new Promise((resolve) => { resolve(true) // 涉及到接口调用,先直接resolve(true) }) }, // index.js const app = getApp() onShow() { app.initAppData().then(res => { this.setData({ // 修改 showDialog: true, }) console.log(this.data.showDialog) }) },
2022-07-25看描述像异步的问题。是不是第一次,在取数据库数据,并存到缓存之前,页面已经加载了。 把取数据的操作改成同步试试?
自定义tabbar如何实现动态绑定项?业务需要根据不同用户显示不同的tabbar项,现在的做法是登录时调用接口去数据库找当前用户配置的tabbar项存到缓存里,然后自定义tabbar直接显示缓存中的项,但是实际表现是用户第一次登录后tabbar加载是空并不能取到缓存中的数据,等到下一次打开小程序时才能读取到缓存中的数据显示tabbar项,这种情况需要如何解决?
2022-07-25红色请求的JSON格式有问题。正确格式的Json开发者工具会标颜色的,你这个识别成了字符串。
pc小程序JSON自动转译问题?[图片] 红色为请求前JSON串,绿色为返回JSON串。后端没有转译处理,目前此小程序无法在PC端使用
2022-07-25在JSON里配置可以吗?
web-view不能自定义顶部标题?设置后无效 wx.setNavigationBarTitle({ title:'aaa', })
2022-07-25有一个全局对象 _wxConfig [图片]
求问,如何获取app.json 里面的 tabBar对象?换句话说我想在小程序页面输出全局的app.json这个配置对象,能不能拿到?
2022-07-25