提问前请务必仔细阅读如何排查故障和常见问题。
问题描述:
后台管理, 用户页面, 新增了一个用户审核的功能 点击编辑的时候, 使用单选框设置对应的状态, 但是未能默认选中对应的状态,
代码如下:
<div>
<label><input type=“radio” value=“0” checked={this.checked0} bidi={this.status}/> 未审核</label>
<label><input type=“radio” value=“1” checked={this.checked1} bidi={this.status}/> 已审核</label>
<label><input type=“radio” value=“2” checked={this.checked2} bidi={this.status}/> 账号锁定</label>
</div>
对应的 this.checked0 this.checked1 this.checked2 分别在进入页面的时候有进行根据 用户的 status 进行的判断赋值的 true 或者 false
分别打印对应的内容 都是显示正常的 只是不能默认选中对应的单选框
请问有哪位大神遇到过这种情况吗? 改如何处理呢?
报错内容:
调试模式报错内容:
已尝试的解决办法:
网址: