如何在 angular material 6 中隐藏单选按钮

How to hide a radio button in angular material 6

想以反应形式隐藏我的 angular 网络应用程序上的默认选定单选按钮,以便客户看不到它,但我可以将该值传递给对我的 http 调用的请求

如果意图是让用户永远不会看到此单选按钮,请不要将其添加到 html/view...只需将值存储在 formControl 中并从formControl 当您进行 http 调用时。

this.yourForm = new FormGroup({
    radioButton: new FormControl(DefaultValueHere)
})

然后在你的 http 调用中

this.yourForm.get('radioButton').value

不需要将它传递给视图只是为了隐藏它,只需将它保存在formControl中,需要时使用它即可。