Feature Level 在 app.module.ts
里维护:
测试步骤
-
注册一个新用户 并登录。
-
将产品添加到购物车。
-
转到购物车页面更新产品数量和结帐。
-
停止服务器 ./spartacus.sh stop
-
在服务器上转到 app/storefrontapp/src/app/app.module.ts 并在 i18n 下添加配置对象(不要忘记前面的逗号):
i18n: {
resources: translations,
chunks: translationChunksConfig,
fallbackLang: 'en',
},
features: {
level: '1.1'
}
-
重启服务器 ./spartacus.sh start
-
注册一个新用户
-
使用新用户登录
-
停止服务器 ./spartacus.sh stop
-
在旧版下的 app.module.ts 中添加
endpoints: {
addEntries: 'fail'
}
下单之后,能在 Chrome 开发者工具 network 观察到上面添加的 addEntries
API 调用:
网友评论