嗨,我正在尝试将值设置为角度输入框,但是当我这样做
让input = document.getElementById('mat-input-0'); input.value =“东西”
输入框的值在网站上发生了变化,但是当我尝试点击按钮并设置表单时,角度显示没有任何值
答案 0 :(得分:0)
您可以绑定到输入值属性:
<input [value]="value">
或使用@ViewChild
在TS文件中获取元素:
html:
TS:
@ViewChild('input', { static: false }) input: ElementRef;
AfterViewInit() {
// Change the value here
}