这是我的代码:
[FromBody]
import { Component, OnInit, Output } from '@angular/core';
import { EventEmitter } from 'events';
@Component({
selector: 'app-captcha',
templateUrl: './captcha.component.html',
styleUrls: ['./captcha.component.css']
})
export class CaptchaComponent implements OnInit {
captcha="click case for change title";
peut:boolean=true;
oui:boolean=true;
nom:boolean=true;
constructor() { }
ngOnInit() {
}
cocher(){
console.log(this.peut,"**");
if(this.peut === false){ this.captcha == "title is changed!"};
}
}
我必须如何正确加载标题。 我和萤火虫有关: 错误错误:没有带有未指定名称属性的表单控件的值访问器
谢谢你的回复
答案 0 :(得分:0)
像这样改变你的代码
cocher(){
console.log(this.peut,"**");
if(!this.peut){
this.captcha ="title is changed!";
}
}