首页 > 微信 > 详细

微信小程序函数执行顺序问题

时间:2021-07-21 09:22:31      阅读:20      评论:0      收藏:0      [点我收藏+]

我在微信小程序中自定义两个函数,一个是获取位置,一个是获取天气,
在Page中

Page({
    getLocalCity: function(){},
    getWeather: function(){},
})

这样定义函数的,
调用时这样的:

Page({
    onLoad:function(){
        this.getLocalCity();
        this.getWeather();
    }
})

在onLoad的时候调用,但我无论怎么写,getWeather()函数都是执行在前,这是为什么呢?

return 一个 Promise 然后链式调用。

    getLocalCity() {
        return new Promise(resolve => {
            wx.request({
                url: "",
                success: res => {
                    // ...
                    return resolve();
                },
            })
        });
    },
    getWeather(){
      // ...  
    },
    onLoad() {
        this.getLocalCity().then(result => {
            this.getWeather();
        });
    }

 

微信小程序函数执行顺序问题

原文:https://www.cnblogs.com/panziwen/p/15037909.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!