一个页面跳转test页面并传递参数:
uni.navigateTo({
url: 'test?id=1&name=uniapp'
});
test页面接受传递过来的参数:
接受参数的方法
因url有长度限制,太长的字符串会传递失败,可用encodeURIComponent方法来解决:
在test.vue页面接受参数:
一个页面跳转test页面并传递参数:
uni.navigateTo({
url: 'test?id=1&name=uniapp'
});
test页面接受传递过来的参数:
接受参数的方法
因url有长度限制,太长的字符串会传递失败,可用encodeURIComponent方法来解决:
在test.vue页面接受参数: