应该是有关系的,
把”是否有车架号“节点删掉,直接连到”获取车辆状态“的节点,
然后把”获取车辆状态“的节点代码改成
node.send({
method: 'GET',
url: `/remote-control/vehicle/status/你的车架号`,
params: {
latest: 'Local',
target: encodeURIComponent('basic,more'),
userId: flow.get('userId'),
}
})
”你的车架号“替换成你的7X的车架号试试 |