简体   繁体   English

带有ng的mdl-radio对于单击的每个单选按钮保持选中状态

[英]mdl-radio with ngFor each radio button that is clicked remains selected

I have three product arrays and a variable to hold current one as a selection: 我有三个产品数组和一个变量来保存当前的一个作为选择:

product_types=['One', 'Two', 'Three']

product_type_one = [
{'description': 'Type one sample one', 'type': 'one'},
{'description': 'Type one sample two', 'type': 'one'},
{'description': 'Type one sample three', 'type': 'one'},
] 

product_type_two = [
{'description': 'Type two sample one', 'type': 'two'},
{'description': 'Type two sample two', 'type': 'two'},
{'description': 'Type two sample three', 'type': 'two'},
] 

product_type_three = [
{'description': 'Type three sample one', 'type': 'three'},
{'description': 'Type three sample two', 'type': 'three'},
{'description': 'Type three sample three', 'type': 'three'},
] 

selectedProduct=null;

On my template I am populating radio buttons so that user can select one of the product groups as following: 在我的模板上,我正在填充单选按钮,以便用户可以选择以下产品组之一:

  <div class="my-filters" *ngFor="let product of product_types">
    <mdl-radio 
    name="productgroup" 
    value="product" 
    ngModel='selectedProduct'
    (change)="showProduct(product)"
    mdl-ripple>{{product}}</mdl-radio>
  </div><br>


 <mdl-card *ngFor="let product of selectedProduct" class="demo-card-event" mdl-shadow="2">
  <mdl-card-title mdl-card-expand>
   <h4>
     {{product.description}}
   </h4>
 </mdl-card-title>
 <mdl-card-actions mdl-card-border>
  <button mdl-button mdl-colored mdl-ripple (click)="openDialog()">
    view
  </button>
  <mdl-layout-spacer></mdl-layout-spacer>
  <mdl-icon>shopping_cart</mdl-icon>
</mdl-card-actions>
</mdl-card>

Until here whatever radio button user clicks, correct array is populated in my mdl-cards, however all the radio buttons that user clicks one after other remain clicked and not just the current selection: 在此之前,无论用户单击什么单选按钮,都会在我的mdl卡中填充正确的数组,但是用户一次接一个单击的所有单选按钮仍然保持单击状态,而不仅仅是当前选择:

在此处输入图片说明

What am I doing wrong? 我究竟做错了什么?

You should be grouping them using md-radio-group as below, 您应该使用md-radio-group对其进行分组,如下所示:

<md-radio-group class="productgroup" [(ngModel)]="selectedProduct">
   <mdl-radio  *ngFor="let product of product_types"
       value="product" 
      (change)="showProduct(product)"
      mdl-ripple>{{product}}</mdl-radio>
</md-radio-group>

I updated my for loop like following: 我更新了我的for循环,如下所示:

 <div *ngFor="let product of product_types" class="my-filters">
    <mdl-radio name="productgroup" [value]='product' [(ngModel)]="selectedProduct" (change)="showProduct(product)"> {{product}} </mdl-radio> <br>
  </div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM