uni.navigateTo不能跳转的问题

碰到uni.navigateTo方法不能跳转,我们先使用fail函数来找出错误信息

            uni.navigateTo({
                url:"saveUserProfile",
                fail: (res) => {
                    console.log(res)//打印错误信息
                }
            })

image.png
提示方法无法找到页面,那可能是之前页面没有在配置文件定义该页面的路径,找到uniapp配置文件pages.json,加入配置路径:

    {
        "path" : "pages/my/saveUserProfile",
        "style" : {
            "navigationBarTitleText": "保存用户信息"
        }
    }


image.png

再次运行,成功跳转。

你可能感兴趣的:(uni-app)