收藏
回答

this.router不支持Promise链式调用

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug navigateTo 工具 System: iPhone, iOS 16.3.1, WeChat 8.0.33 WeChatLib: 2.31.0
Component({
    methods: {
        navigateTo() {
            this.router.navigateTo({
                url: '/finally/index'
            }).then(() => {
                console.log('then')
            }).finally(() => {
                console.log('finally')
            })
        }
    }
})


TypeError: Cannot read property 'then' of undefined
回答关注问题邀请回答
收藏
登录 后发表内容