本文主要介绍热点数据的更新。
以下调用示例中lyjClient的初始化见:初始化
// 子场景ID
String subSceneId = "hjyuioweopeou****";
String tagData = "{}";
SaveHotspotTagRequest request = new SaveHotspotTagRequest();
request.setSubSceneUuid(subSceneId);
if(tagData != null){
String tagJson = JSONObject.toJSONString(bo);
request.setParamTag(tagJson);
}
SaveHotspotTagResponse response = lyjClient.saveHotspotTag(request);
SaveHotspotTagResponseBody response = response.getBody();
tagData数据格式如下:
{
"data": {
}
}
注意:
所有的增删改热点的操作在前端完成,之后把全部热点数据传递给接口更新。
文档内容是否对您有帮助?