在表单加载

时间:2017-01-07 13:56:40

标签: angular select angular2-forms angular2-formbuilder

我遇到与Drop Down List in Angular 2 Model Driven Form中描述的类似的问题(尽管模型绑定到选择框的方式要简单得多)。

模板非常简单,基本上是“亲爱的x”列表,其中x由服务提供:

screenshot of select box

<form novalidate [formGroup]="myForm">
  <div class="form-group">
    <label for="salutation">Dear ...</label>
    <select id="salutation"
            class="form-control"
            formControlName="salutation">
      <option value="">Please select how to address the customer</option>
      <option *ngFor="let sal of salutations"
              [value]="sal">{{sal}}
      </option>
    </select>
  </div>
</form>

在组件中,我订阅了一个获取此选择框数据的服务(console.log表明确实数据确实到达了。)

  ngOnInit() {
    this.createFormControls();
    this.createForm();
    this.proposalStateService.emitProposal.subscribe(
      data => {
        console.log('subscribe fired: ');
        console.log(data);
        this.salutations = [
          'Mr & Mrs ' + data.last_name,
          'Mrs ' + data.last_name,
          'Ms ' + data.last_name,
          'Mr ' + data.last_name,
          data.first_name
        ];
      }
    );
  }

  createFormControls() {
    this.salutation = new FormControl(this.salutations, Validators.required);
  }

  createForm() {
    this.myForm = new FormGroup({
      salutation: this.salutation
    });
  }

我已经尝试过这些方法来使用服务中的值来更新表单,但它们似乎都不起作用:

  1. 重置群组

    this.myForm = this.formBuilder.group({
      salutation: [this.salutations]
    });
    
  2. 修补表格上的值

    this.myForm.patchValue(this.salutation, this.salutations);
    
  3. 设置控件上的值

    this.salutation.setValue(this.salutations);
    
  4. 通过表单

    设置值
    this.myForm.controls['salutation'].setValue(this.salutations);
    
  5. 显然我错过了什么......但是什么?

    编辑原始问题

    有时控制台显示数据到达,但在清理完我的代码后,经过进一步测试后,console.log事件现在没有显示此组件加载时。我认为这一定是一个时间问题 - 可能是组件在发出它需要的数据的服务之后加载。

    此组件由导航事件上的父组件加载,如下所示:

    /parent.component.ts
    
      ngOnInit() {
        this.newProposal = new Proposal;
        this.newProposal.step = 1;
        this.proposalStateService.emitProposal.subscribe(
          data => {
            this.router.navigate(['pages/proposals/new/step' + data.step]);
          }
        );  
    

    用户将一些数据放到此组件中会触发emitProposal,从而导致调用此方法:

      private initProposal(customer, step) {
        this.newProposal.first_name = customer.first_name;
        this.newProposal.last_name = customer.last_name;
        this.newProposal.customer_id = customer.id;
        this.newProposal.email = customer.email;
        this.newProposal.mobile = customer.mobile;
        this.newProposal.status = 'Draft';
        this.newProposal.step = step;
        this.proposalStateService.pushProposal(this.newProposal);
      }
    

    所以看起来'pushProposal'在子组件加载之前被触发了,这可能是问题吗?

    (现在我想知道以前的日志是如何显示收到的数据的,哈哈,在写这个问题时我到底发生了什么变化!?)

1 个答案:

答案 0 :(得分:0)

好的,所以我找到了一个解决方案 - 感谢那些帮助评论和链接到其他问题的人。

当我将表单移动到父表单时,数据到达并使用选项(D)加载到表单中:

this.myForm.controls['salutation'].setValue(this.salutations);

但显然我不想在那里,而只是在父母导航后加载它。

因此,解决这个问题的方法是通过允许服务存储来增强服务。父对象推送的对象。因此发射器已经改变了:

  emitProposal = new EventEmitter<Proposal>();
  pushProposal(value: Proposal) {
    this.emitProposal.emit(value);
  }

到此:

  currentProposal: Proposal;

  getCurrentProposal() {
    return this.currentProposal;
  }

  emitProposal = new EventEmitter<Proposal>();
  pushProposal(value: Proposal) {
    this.currentProposal = value;
    this.emitProposal.emit(value);
  }

现在只需要表单:

 ngOnInit() {
    this.createFormControls();
    this.createForm();
    this.proposal = this.proposalStateService.getCurrentProposal();
    this.salutations = [
          'Mr & Mrs ' + this.proposal.last_name,
          'Mrs ' + this.proposal.last_name,
          'Ms ' + this.proposal.last_name,
          'Mr ' + this.proposal.last_name,
          this.proposal.first_name
    ];
 }