小程序技术未来发展的思考 - 智能硬件互联
2023-09-30
14 浏览
// page.js
page({
data: {
lightstatus: 'off',
},
turnonlight: function () {
// 发送控制指令打开灯光
wx.request({
url: 'https://smart-home-api.com/control/light',
method: 'post',
data: {
action: 'on',
},
success: (res) => {
this.setdata({
lightstatus: 'on',
});
},
});
},
turnofflight: function () {
// 发送控制指令关闭灯光
wx.request({
url: 'https://smart-home-api.com/control/light',
method: 'post',
data: {
action: 'off',
},
success: (res) => {
this.setdata({
lightstatus: 'off',
});
},
});
},
});
请后发表内容