微信公众号开发

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

本文主要是介绍微信小程序函数执行顺序问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

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

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

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

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

return 一个 Promise 然后链式调用。

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

 

这篇关于微信小程序函数执行顺序问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!