智能客服
你问我答,随时在线为你解决问题
Android、iOS
当需要修改自动规则时,WEB中调用js方法如下:
- hilink.updateRule(
- "json_body", // body,string, 规则json字符串
- "resultCallback" // resultCallback,成功或失败时,将调用传入resultStr返回结果
- );
- // web页面中需实现该函数,用来获取执行结果
- function resultCallback (resultStr) {
- var result = resultStr; // REST请求的返回结果
- }
json_body中携带需要修改的规则,格式如下:
- {
- "name": "Rule01",
- "conditions": [
- {
- "type": "DEVICE_DATA",
- "deviceInfo": {
- "devId": "2323-1221-...",
- "devType": "005",
- "path": "switch/on"
- },
- "operator": "=",
- "value": "1"
- }
- ],
- "author": "12222",
- "actions": [
- {
- "type": "DEVICE_CMD",
- "devId": "2323-1221-...",
- "devType": "01B",
- "cmd": {
- "sid": "switch",
- "messageType": "POST",
- "messageBody": {
- "on": 1
- }
- }
- }
- ]
- }
Body不能为空,否则将失败。
当调用成功时,JSSDK将调用success对应的回调函数,将如下结果返回到resultStr中。
- {
- "ruleId": "*******",
- "name": "Rule01",
- "conditions": [
- {
- "id": "****",
- "type": "DEVICE_DATA",
- "deviceInfo": {
- "devId": "2323-1221-...",
- "devType": "005",
- "path": "switch/on"
- },
- "operator": "=",
- "value": "1"
- }
- ],
- "author": "12222",
- "actions": [
- {
- "type": "DEVICE_CMD",
- "id": "****",
- "devId": "2323-1221-...",
- "devType": "01B",
- "cmd": {
- "sid": "switch",
- "messageType": "POST",
- "messageBody": {
- "on": 1
- }
- }
- }
- ]
- }