我将获取页面数据的方法在main.js中简单封装,然后挂在全局,是这样写的
const curParams = () => {
const currentPage = getCurrentPages().pop()
console.log(currentPage)
console.log(Object.keys(currentPage))
const currentParams = currentPage.options
console.log(currentParams)
return currentParams
}
然后在调用这个方法时
展开后可以在第一个console中看到options,但是在Object.keys的遍历中却没有这一项,导致后面的获取出现错误,这是为什么?
0 个回复