英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论