navigateTo 里传的参数 直接在properties里定义就行;
另外这种形式的跳转传参传的值只能是字符串,传不了Boolean
wx.navigateTo({
url: `/pages/edit-elder/edit-elder?elderId=${id}`,
});
考虑用JSON.stringify
2023-10-13 12:02:22
navigateTo 里传的参数 直接在properties里定义就行;
另外这种形式的跳转传参传的值只能是字符串,传不了Boolean