当我调用路由器导航时,我已将角度应用程序从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'
答案 0 :(得分:0)
运行以下命令生成dist文件夹。
npm run build --prod
而不是
ng build --prod
然后它正在工作。