• 概要
@angular/forms

SelectMultipleControlValueAccessor

directive
stable

The ControlValueAccessor for writing multi-select control values and listening to multi-select control changes. The value accessor is used by the FormControlDirective, FormControlName, and NgModel directives.

API

    
      class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor implements ControlValueAccessor {}
    
    

compareWith

(o1: any, o2: any) => boolean

Tracks the option comparison algorithm for tracking identities when checking for changes.

Description

The ControlValueAccessor for writing multi-select control values and listening to multi-select control changes. The value accessor is used by the FormControlDirective, FormControlName, and NgModel directives.


Exported by

Usage Notes

Using a multi-select control

The follow example shows you how to use a multi-select control with a reactive form.

          
const countryControl = new FormControl();
          
<select multiple name="countries" [formControl]="countryControl">
Jump to details