小程序技术未来发展的思考 - 更多的硬件支持
2023-09-30
11 浏览
<view class="device-control">
<text>灯光状态:text>
<switch bindchange="onswitchchange" checked="{{ islighton }}">switch>
view>
page({
data: {
islighton: false,
},
onswitchchange: function (e) {
const ischecked = e.detail.value;
// 模拟与智能灯光设备的通信
if (ischecked) {
// 向设备发送开灯指令
console.log('发送开灯指令');
} else {
// 向设备发送关灯指令
console.log('发送关灯指令');
}
// 更新灯光状态
this.setdata({
islighton: ischecked,
});
},
});
请后发表内容