page1
<button @click="toPage2">reLaunch page2</button>
const toPage2 = () => {
uni.reLaunch({
url: '/pages/page2/page2'
})
}
page2
<button @click="toPage1">reLaunch page1</button>
const toPage1 = () => {
uni.reLaunch({
url: '/pages/page1/page1'
})
}
胧 (作者)
今天又正常了。之前断续有两天出现过这个问题
2023-03-16 09:57