我可以依赖从 Google Places API PlaceResult 对象返回的 weekday_text 对象吗?
Can I rely on the weekday_text object returned from Google Places API PlaceResult object?
从 Google Places API 的 PlaceResult 对象中返回的 opening_hours.weekday_text
对象未记录在 Places Library
中
我在文档中找不到任何对 weekday_text
的引用。给定 this post 说 ' 不要使用 Google API 的未记录的属性。他们可以并且确实会随着每个版本的变化而变化',我担心这可能会在未来发生变化。
我可以在应用程序中依赖 opening_hours.weekday_text
对象还是应该使用 opening_hours.periods
对象来生成 open/close 数据?
示例结果...
"opening_hours": {
"open_now": true,
"periods": [
{
"close": {
"day": 1,
"time": "0000",
"hours": 0,
"minutes": 0,
"nextDate": 1430089200000
},
"open": {
"day": 0,
"time": "0800",
"hours": 8,
"minutes": 0,
"nextDate": 1430031600000
}
}
...
],
"weekday_text": [
"Monday: 8:00 am – 11:00 pm",
"Tuesday: 8:00 am – 11:00 pm",
"Wednesday: 8:00 am – 11:00 pm",
"Thursday: 8:00 am – 11:00 pm",
"Friday: 8:00 am – 12:00 am",
"Saturday: 8:00 am – 12:00 am",
"Sunday: 8:00 am – 12:00 am"
]
},
我们更新了文档 here 以包含 weekday_text 字段的详细信息。
从 Google Places API 的 PlaceResult 对象中返回的 opening_hours.weekday_text
对象未记录在 Places Library
我在文档中找不到任何对 weekday_text
的引用。给定 this post 说 ' 不要使用 Google API 的未记录的属性。他们可以并且确实会随着每个版本的变化而变化',我担心这可能会在未来发生变化。
我可以在应用程序中依赖 opening_hours.weekday_text
对象还是应该使用 opening_hours.periods
对象来生成 open/close 数据?
示例结果...
"opening_hours": {
"open_now": true,
"periods": [
{
"close": {
"day": 1,
"time": "0000",
"hours": 0,
"minutes": 0,
"nextDate": 1430089200000
},
"open": {
"day": 0,
"time": "0800",
"hours": 8,
"minutes": 0,
"nextDate": 1430031600000
}
}
...
],
"weekday_text": [
"Monday: 8:00 am – 11:00 pm",
"Tuesday: 8:00 am – 11:00 pm",
"Wednesday: 8:00 am – 11:00 pm",
"Thursday: 8:00 am – 11:00 pm",
"Friday: 8:00 am – 12:00 am",
"Saturday: 8:00 am – 12:00 am",
"Sunday: 8:00 am – 12:00 am"
]
},
我们更新了文档 here 以包含 weekday_text 字段的详细信息。