美文网首页web前端开发
el-checkbox选中时把值转为0和1

el-checkbox选中时把值转为0和1

作者: 爱学习的新一 | 来源:发表于2022-03-30 09:03 被阅读0次

    最近做项目遇到el-checkbox选中只能为true和false,而后端需要传1和0,返回时也是一样

    <el-table-column label="是否答案" width="120" align="center">
                <template slot-scope="scope">
                  <!-- <el-checkbox v-model="scope.row.isRight" >答案</el-checkbox> -->
                  <el-checkbox v-model="scope.row.isRight" :checked="scope.row.isRight===1? true:false" :true-label="1"
                    :false-label="0">
                    答案
                  </el-checkbox>
                </template>
              </el-table-column>
    
    image.png
    image.png

    相关文章

      网友评论

        本文标题:el-checkbox选中时把值转为0和1

        本文链接:https://www.haomeiwen.com/subject/husijrtx.html