小程序获取页面参数值
刚子 发布于 阅读:150
比如路径为 xxx.html?id=11
function getCurrentPagePath() {
const pages = getCurrentPages(); // 获取加载的页面
const currentPage = pages[pages.length - 1]; // 获取当前页面的对象
const currentPage2 = pages[pages.length - 2]; // 获取当前页面的对象
const url = currentPage.route; // 当前页面url
const options = currentPage.options; // 如果要获取查询参数options
return options['id'];
}