Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自服务器的数据。响应数据是整数 1 或 0,鉴于我使用元素 ui el-switch,它使用布尔值 true 或 false 设置值。
然后我将编辑该值并将新值作为整数值而不是布尔值发送到服务器。
有什么可以帮助我的吗?
在el-switch您可以使用属性 :active-value和inactive-value. 两者都接受一个数字作为匹配活动和非活动状态的值。在你的情况下,你可能应该有:
el-switch
active-value
inactive-value
<el-switch v-model="your_integer_data" :active-value="1" :inactive-value="0"> </el-switch>