重定向到路径显示:TypeError:无法读取未定义的属性“路径名”

时间:2019-07-26 07:13:23

标签: reactjs redirect hyperlink react-router

在成功响应后,我将重定向到页面,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

1 个答案:

答案 0 :(得分:1)

仅在可用时访问路径名。您必须提出一个条件。

var pathname = location && location.pathname;

仅在可用时访问路径名。