在子模块中安装NGRX存储的CLI命令

huangapple go评论61阅读模式
英文:

Cli command to Install NGRX store in sub modules

问题

在我的项目中,我有一个惰性加载的模块,我想在子模块下创建一个NGRX存储文件夹。那么在子文件夹下创建包括actions、reducers和effects的存储的CLI命令是什么?

如果我使用以下命令,存储将被创建在App文件夹下,并且app.module.ts已配置。我想在名为“X”的文件夹下创建存储文件夹,该文件夹位于App文件夹下,并配置x.module.ts文件。

npm install @ngrx/{store,effects,entity,store-devtools} --save
英文:

In my project I have a lazy module and I want to create NGRX store folder under the sub module. So what is the cli command for creating the store along with actions, reducers and effects under the sub folder ?

If I use the following, the store is created under App folder and app.module.ts in configured. I want to create the store folder under the folder 'X' which is under App folder and configure the x.module.ts file.

npm install @ngrx/{store,effects,entity,store-devtools} --save

答案1

得分: 1

我认为,你可以使用原理图(https://v8.ngrx.io/guide/schematics)来做到这一点。类似于:

ng generate @ngrx/schematics:store State --root --module submodule/submodule.module.ts
英文:

I think, you can use schematics (https://v8.ngrx.io/guide/schematics) to do so. Something like:

ng generate @ngrx/schematics:store State --root --module submodule/submodule.module.ts

huangapple
  • 本文由 发表于 2023年3月15日 20:21:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/75744627.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定