gpt4 book ai didi

javascript - VueJS Web 应用程序中的 Google Maps API 弃用错误 : utc_offset is deprecated as of November 2019 and will be turned off in November 2020

转载 作者:行者123 更新时间:2023-12-04 00:59:33 24 4
gpt4 key购买 nike

我目前在我的 VueJS Web 应用程序中收到以下错误。

utc_offset is deprecated as of November 2019 and will be turned off in November 2020. Use utc_offset_minutes instead.



根据 Google Maps API documentation :

The Places fields opening_hours.open_now and utc_offset are deprecated as of November 20, 2019, and will be turned off on November 20, 2020. These fields are deprecated ONLY in the Places Library, Maps JavaScript API. This guide shows you how to update your code to stop using these fields.



唯一的问题是,我绝对是 不是 直接在我的 Vue 应用程序中的任何地方使用 utc_offset。我通过在我的应用程序中对单词“utc_offset”进行全局查找来验证这一点。我也不记得访问过那个特定的属性。

如果我没有使用该属性,为什么会收到此弃用警告?

下面是我的堆栈跟踪的样子:

enter image description here

以下代码片段显示了 clearAllCardsAndFilters方法可以。
methods: {
clearAllCardsAndFilters() {
this.clearActiveCardListingId();
this.clearFilterCards();
},
clearActiveCardListingId() {
this.$store.commit('clearActiveCardListingId');
},

以下代码片段显示了 clearActiveCardListingId Vuex 中的突变确实如此。它只是设置 activeCardListingId Vuex 中的属性到 null .
    clearActiveCardListingId(state) {
state.activeCardListingId = null;
},

最佳答案

如果您使用的是 VUE2-google-maps,那么您可以通过以下方式使用 google map 组件:

<GmapAutocomplete
@place_changed="setPlace"
:options="{fields: ['geometry', 'formatted_address', 'address_components']}">
</GmapAutocomplete>

关于javascript - VueJS Web 应用程序中的 Google Maps API 弃用错误 : utc_offset is deprecated as of November 2019 and will be turned off in November 2020,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59716825/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com