Флажок Angular 5 bind true и false - PullRequest
0 голосов
/ 05 июня 2018

https://docs.angularjs.org/api/ng/input/input%5Bcheckbox%5D

<input type="checkbox"
   ng-model="string"
   [name="string"]
   [ng-true-value="expression"]
   [ng-false-value="expression"]
   [ng-change="string"]>

Я ищу эквивалент этого или Angular 5. Спасибо за любую помощь заранее.

1 Ответ

0 голосов
/ 05 июня 2018

Вы можете использовать множественный выбор,

Вот пример из документов

<mat-form-field>
  <mat-select placeholder="Toppings" [formControl]="toppings" multiple>
    <mat-option *ngFor="let topping of toppingList" [value]="topping">{{topping}}</mat-option>
  </mat-select>
</mat-form-field>

Подробнее: https://material.angular.io/components/select/overview

...