Angular 6路由器导航给出错误无法读取属性'OVERWRITE'

时间:2018-05-11 06:02:05

标签: angular6

当我调用路由器导航时,我已将角度应用程序从Angular 5迁移到6,

this.router.navigate(['doctor-log-in']).then(function (res) {
       console.log(res);
     }, function (err) {
       console.log('in errrrr');
       console.log(err);
     });

它给出了以下错误

  

main.9819f0c7d0ec0efd5341.js:1 TypeError:无法读取n.applyServerOverwrite

中新n(main.9819f0c7d0ec0efd5341.js:1)的未定义属性'OVERWRITE'

1 个答案:

答案 0 :(得分:0)

运行以下命令生成dist文件夹。

  

npm run build --prod

而不是

  

ng build --prod

然后它正在工作。