我的计划是将表单的值存储在我的ngrx商店中,以允许我的用户浏览网站并返回表单(如果他们愿意)。我们的想法是,表单的值将使用可观察的值从商店重新填充。
以下是我目前的做法:
constructor(private store: Store<AppState>, private fb: FormBuilder) {
this.images = images;
this.recipe$ = store.select(recipeBuilderSelector);
this.recipe$.subscribe(recipe => this.recipe = recipe); // console.log() => undefined
this.recipeForm = fb.group({
foodName: [this.recipe.name], // also tried with an OR: ( this.recipe.name || '')
description: [this.recipe.description]
})
}
商店有一个初始值,我看到它正确地通过我的选择器功能,但是当我的表单创建时,我不认为价值已经返回。因此this.recipe
仍未定义。
这是错误的做法,还是我能以某种方式确保在创建表单之前返回observable?
答案 0 :(得分:8)
虽然添加另一个图层可能看起来更复杂,但通过将单个组件拆分为两个组件来处理可观察对象要容易得多:容器组件和表示组件。
容器组件仅处理可观察对象而不处理演示文稿。任何可观察对象的数据都通过@Input
属性传递给表示组件,并使用async
管道:
@Component({
selector: "recipe-container",
template: `<recipe-component [recipe]="recipe$ | async"></recipe-component>`
})
export class RecipeContainer {
public recipe$: Observable<any>;
constructor(private store: Store<AppState>) {
this.recipe$ = store.select(recipeBuilderSelector);
}
}
表示组件接收简单属性,而不必处理可观察对象:
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
selector: "recipe-component",
template: `...`
})
export class RecipeComponent {
public recipeForm: FormGroup;
constructor(private formBuilder: FormBuilder) {
this.recipeForm = this.formBuilder.group({
foodName: [""],
description: [""]
});
}
@Input() set recipe(value: any) {
this.recipeForm.patchValue({
foodName: value.name,
description: value.description
});
}
}
使用容器和表示组件的概念是一般的Redux概念,并在Presentational and Container Components中进行了解释。
答案 1 :(得分:2)
我可以想到两个选择......
选项1:
在显示
形式的html上使用*ngIf<form *ngIf="this.recipe">...</form>
选项2: 使用模板中的async管道创建模型,如:
成分
model: Observable<FormGroup>;
...
this.model = store.select(recipeBuilderSelector)
.startWith(someDefaultValue)
.map((recipe: Recipe) => {
return fb.group({
foodName: [recipe.name],
description: [recipe.description]
})
})
模板
<app-my-form [model]="(model | async)"></app-my-form>
您必须考虑如何处理商店和当前模型的更新。