# refreshHomeInfo ^8.9

刷新家庭信息

# 请求参数

Prop Type Default Comment
homeId String N/A 家庭id, 默认为当前家庭id

# 接口调用示例

const params = {
    "homeId": "",
}
this.$bridge
  .refreshHomeInfo(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })

1
2
3
4
5
6
7
8
9
10
11
12

# 接口返回示例

{
  "code": "0",
  "msg": "success"
}


1
2
3
4
5
6
更新时间: 7/11/2022, 3:03:00 PM