带有html标记的const声明中的JSX <<'...'Expected.ts(1005)>>

时间:2019-08-23 06:39:28

标签: html reactjs jsx

解析错误:意外的令牌,预期为“ ...”

这似乎是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)} 就像“ ...”一样。

0 个答案:

没有答案