解析错误:意外的令牌,预期为“ ...”
这似乎是jsx的问题,其中{}和这个。代码不能一起工作
for (let index = 6; index < 20; index++) {
//code
const statusbool = true;
const status = <input type="checkbox" id={'cb'+String(index)} name={'cb'+String(index)} {this.returnChecked(statusbool)} />
//code
}
returnChecked(bool)是该类的方法,如果参数bool为true,则返回字符串“ checked”
错误指针指向{this.returnChecked(statusbool)} 就像“ ...”一样。