Angular aot构建中的错误:不支持表达式形式

时间:2019-03-28 11:24:17

标签: angular angular-aot

为了启用服务器端渲染,在构建时出现一些错误。在这里我得到了错误:

const lang = ( typeof localStorage!=='undefined' && localStorage.getItem("lang") ) ? localStorage.getItem("lang") : config.defaultLang;

错误:

ERROR in src\app\app-routing.module.ts(6,16): Error during template compile of 'AppRoutingModule'
Expression form not supported.

1 个答案:

答案 0 :(得分:1)

这主要是由于路由中的逗号引起的,在我的情况下,请确保没有,在AppRoutingModule中删除其中一个,然后重新编译