gpt4 book ai didi

html - 错误 : Cannot change `multiple` mode of select after initialization

转载 作者:行者123 更新时间:2023-12-02 00:32:41 35 4
gpt4 key购买 nike

错误图片:

Error image

 <div fxFlex.gt-lg="100" fxFlex="100" *ngIf="requestAction == 'add'">
<div class="pb-1">
<md2-select placeholder="{{'WidgetType'|translate:lang}}" class="input_custom_width"(change)="widgetNode($event.value)" required>
<md2-option *ngFor="let widgetType of widgetTypeAry" [value]="widgetType.value">
{{widgetType.name}}
</md2-option>
</md2-select>
</div>
</div>
<div fxFlex.gt-lg="100" fxFlex="100" *ngIf="fieldsObj['node'] && showRequestAction" >
<div class="pb-1">
<md2-select placeholder="{{'Node'|translate:lang}}" [formControl]="editWidgetForm.controls['nodeId']" [(ngModel)]="nodeId" class="input_custom_width" [(multiple)]="isMultiNode" (change)="nodeChange($event.value)" required>
<md2-select-header>
<md-input-container class="input_custom_width">
<input mdInput type="text" placeholder="{{'Search'| translate:lang}}" [ngModelOptions]="{standalone: true}" [(ngModel)]="searchNode"/>
</md-input-container>
</md2-select-header>
<md2-option *ngFor="let node of nodesAry | filterPipe : searchNode" [value]="node.value">
{{ node.name }}
</md2-option>
</md2-select>
<small *ngIf="editWidgetForm.controls['nodeId'].hasError('required') && editWidgetForm.controls['nodeId'].touched" class="mat-text-warn">{{'nodeReq'|translate:lang}}</small>
</div>
</div>

当我在选择下拉列表中使用 multiple 时它工作正常但是当我使用 [multiple] 时它只适用于我的编辑表单而不是添加表单。并且它给出了上面的错误 - 错误:无法更改 multiple 初始化后的选择模式。帮我解决这个问题。

最佳答案

这个问题有一个非常丑陋的解决方法,将你的 mat-select 扭曲成 *ngif=true,并创建一个具有 multiple 属性的副本,包裹在它下面的 *ngif=!true

关于html - 错误 : Cannot change `multiple` mode of select after initialization,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51204450/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com