我是 sencha touch 的新手,但我遇到的错误似乎与 google maps api 有关。我正在调用 google maps api 以搜索 sencha touch 中的特定位置。但我得到以下错误
这是我在 store/Places.js 文件中的代码
Ext.define('TestIOS.store.Places', {
extend: 'Ext.data.Store',
config: {
model: 'TestIOS.model.Place',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=AIzaSyCFWZSKDslql5GZR0OJlVcgoQJP1UKgZ5U',
reader: {
type: 'json',
rootProperty: 'results'
}
}
}
});
我该如何解决这个错误?