在成功响应后,我将重定向到页面,URL正在更改,并且正在执行对控制器的调用,该返回数据,但是在页面上呈现它时显示:
TypeError:无法读取未定义的属性“路径名”
48 | var createPath = Exports.createPath =函数createPath(location){
49 | var pathname = location.pathname, 50 |搜索= location.search, 51 |哈希= location.hash; 52 |
在node_modules / history / PathUtils.js:49
答案 0 :(得分:1)
仅在可用时访问路径名。您必须提出一个条件。
var pathname = location && location.pathname;
仅在可用时访问路径名。