gpt4 book ai didi

angular - 在 Nebular 中默认选中 true?

转载 作者:行者123 更新时间:2023-12-05 06:28:25 26 4
gpt4 key购买 nike

我正在尝试在 ngx 中创建默认选中的按钮。

在 component.ts 文件中我有以下脚本

options = [
{ value: 'URL', label: 'URL' , checked: true}, //checked true not working
{ value: 'UPLOAD', label: 'Upload File' },
];

下面是我的html文件

<nb-radio-group [(ngModel)]="option">
<nb-radio class='radio-button' *ngFor="let option of options" [value]="option.value">
{{ option.label }}
</nb-radio>
</nb-radio-group>

在ngx中如何在第一次加载时检查为真?

最佳答案

你可以尝试在你的组件中设置这个。

ngOnInit() {
this.option.value = 'URL'
}

如果你想设置 checked for { value: 'URL', label: 'URL' , checked: true};

或者像这样使用:

    <nb-radio-group [(value)]="radioGroupValue">
<nb-radio
[value]="'This is value 1'">
Radio 1
</nb-radio>
<nb-radio
[value]="'This is value 2'">
Radio 2
</nb-radio>
<nb-radio
[value]="'This is value 3'">
Radio 3
</nb-radio>
</nb-radio-group>

在你的组件中设置默认值:

import { Component } from '@angular/core';

@Component({
selector: 'your-component',
styleUrls: ['./your-component.scss'],
templateUrl: ['./your-component.html',
})

export class FormInputsComponent {
radioGroupValue = 'This is value 2';
}

关于angular - 在 Nebular 中默认选中 true?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54343393/

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