我的 application.js 出现“ReferenceError: google is not defined”错误
这是我的 js 包含的内容:
$(document).ready(function(){
var input = document.getElementById('searchTextField');
var options = {
types: [],
componentRestrictions: {country: 'in'}
};
var autocomplete = new google.maps.places.Autocomplete(input, options);
});
不明白为什么会出现这个错误。我的搜索功能工作正常,但 Web 控制台出现此错误。
有人可以告诉解决方案吗?