2016-07-04 66 views
3

我是一名初級紅寶石開發者。我開發了一個使用Google Maps JavaScript API的Web應用程序,並在窗體輸入上使用了自動完成功能。谷歌地圖自動完成js正在本地主機上工作,但不是在heroku上

autocomplete在localhost上正常工作,但在heroku上部署後不再工作。

這是我的html.erb下面。爲了您的完美信息,該表單位於頁腳中。該表單部分隱藏,唯一可見的部分對應於用於上傳視頻文件的按鈕。點擊此按鈕並選擇了視頻文件後,我將顯示一個包含表格其餘部分的模式。這就是'text_field_tag'(id =「user_input_autocomplete_address」)的顯示位置,以及自動完成應該在哪裏工作。

<% if user_signed_in? %> 
 

 
<div class="footer-check hidden-md hidden-lg"> 
 
    <div class="container text-right"> 
 
    <div class="row"> 
 
     <div class="flexbox"> 
 
     <div class="footer-home active"> 
 
      <%= link_to root_path do %> 
 
      <i class="fa fa-home" aria-hidden="true"></i> 
 
      <% end %> 
 
     </div> 
 
     <div class="footer-search"> 
 
     <!-- later put link_to reviews_path --> 
 
      <%= link_to search_path do %> 
 
      <i class="fa fa-search" aria-hidden="true"></i> 
 
      <% end %> 
 
     </div> 
 
     <div class="footer-button"> 
 
     <%= simple_form_for(Review.new) do |f| %> 
 
      <div id="add_video_image_btn"> 
 
      <label for="review_video", class="add_video_image"><%= image_tag "plus.png" %></label> 
 
      <%= f.input :video, label: false, input_html: { accept: ".mp4, .mov, .m4v, .wmv, .webm, .avi", class: 'hidden'} %> 
 
      <%= f.input :video_cache, as: :hidden, class: "add_video_image file required" %> 
 
      </div> 
 
     </div> 
 
     <div class="footer-likes"> 
 
      <%= link_to dashboard_users_path do %> 
 
      <i class="fa fa-heart" aria-hidden="true"></i> 
 
      <% end %> 
 
     </div> 
 

 
     <div class="footer-user"> 
 
      <%= link_to user_path(current_user) do %> 
 
      <i class="fa fa-user" aria-hidden="true"></i> 
 
      <% end %> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div> 
 

 
<!--Beginning Modal --> 
 
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> 
 
<div class="modal-dialog" role="document"> 
 
    <div class="modal-content"> 
 
    <div class="modal-body"> 
 
     <div id="add_video_form_step2"> 
 
     <%= f.error_notification %> 
 

 
     <fieldset class="form-group" style="margin-bottom:0;"> 
 

 
      <div class="section"> 
 
      Place 
 
      </div> 
 
      <div class="inner-wrap"> 
 
      <div id=""> 
 
       <%= text_field_tag :place, nil, class: 'form-control', id: 'user_input_autocomplete_address', placeholder: 'Start typing...', size: 80 %> 
 
      </div> 
 
      </div> 
 

 
      <div class="section"> 
 
      Comment 
 
      </div> 
 
      <div class="inner-wrap"> 
 
      <%= text_field_tag :comment, nil, class:'form-control', placeholder: 'Food is good but the place is a bit noisy', size: 80 %> 
 
      </div> 
 

 
      <div class="inner-wrap" style="padding:15px;"> 
 
      <div class="emoji-toggle emoji-happy"> 
 
       <input type="checkbox" id="toggle1" class="toggle" name="review[mood]" value="false"> 
 
       <div class="emoji"></div> 
 
       <label for="toggle1" class="well"></label> 
 
      </div> 
 
      </div> 
 

 
      <div class=""> 
 
      <%= f.button :submit, class: "btn btn-primary form-control", id: "click-trigger" %> 
 
      </div> 
 

 
      <%= hidden_field_tag :name, id: 'name' %> 
 
      <%= hidden_field_tag :street_number, id: 'street_number' %> 
 
      <%= hidden_field_tag :route, id: 'route' %> 
 
      <%= hidden_field_tag :locality, id: 'locality' %> 
 
      <%= hidden_field_tag :administrative_area_level_1, id: 'administrative_area_level_1' %> 
 
      <%= hidden_field_tag :postal_code, id: 'category_0' %> 
 
      <%= hidden_field_tag :country, id: 'country' %> 
 
      <%= hidden_field_tag :formatted_address, id: 'formatted_address' %> 
 
      <%= hidden_field_tag :phone_number, id: 'phone_number' %> 
 
      <%= hidden_field_tag :website, id: 'website' %> 
 
      <%= hidden_field_tag :gplace_id, id: 'gplace_id' %> 
 
      <%= hidden_field_tag :category_0, id: 'category_0' %> 
 
      <%= hidden_field_tag :category_1, id: 'category_1' %> 
 
      <%= hidden_field_tag :category_2, id: 'category_2' %> 
 
      <%= hidden_field_tag :category_3, id: 'category_3' %> 
 
      <%= hidden_field_tag :category_4, id: 'category_4' %> 
 
      <%= hidden_field_tag :category_5, id: 'category_5' %> 
 
      <%= hidden_field_tag :hours_open_day_0, id: 'hours_open_day_0' %> 
 
      <%= hidden_field_tag :hours_open_day_1, id: 'hours_open_day_1' %> 
 
      <%= hidden_field_tag :hours_open_day_2, id: 'hours_open_day_2' %> 
 
      <%= hidden_field_tag :hours_open_day_3, id: 'hours_open_day_3' %> 
 
      <%= hidden_field_tag :hours_open_day_4, id: 'hours_open_day_4' %> 
 
      <%= hidden_field_tag :hours_open_day_5, id: 'hours_open_day_5' %> 
 
      <%= hidden_field_tag :hours_open_day_6, id: 'hours_open_day_6' %> 
 
     </fieldset> 
 
     </div> 
 
    </div> 
 
    </div> 
 
    </div> 
 
</div> 
 

 
     </div> 
 
     </div> 
 
    </div> 
 
    </div> 
 
<% end %> 
 
<% end %> 
 

 
<!--End Modal --> 
 

 
<!-- Start of js to display the modal --> 
 
<!-- NB: the autocomplete module is in assets/javascript/autocomplete.js --> 
 
<%= content_for :after_js do %> 
 
    <script> 
 
    $('#review_video').change(function(){ 
 
     $('#myModal').modal('show'); 
 
    }); 
 
    </script> 
 
<% end %> 
 
<!-- End of js to display the modal -->

頁腳(收集的模態和形式)一個佈局/ application.html.erb視圖,其是下面中調用。你會看到,我使用谷歌API鍵值中有沒有(隱藏在application.yml)

<!DOCTYPE html> 
 
<html> 
 
    <head> 
 
    <title><%= meta_title %></title> 
 
    <%= csrf_meta_tags %> 
 

 
    <!-- Start Favicon --> 
 

 
    <%= favicon_link_tag '_/app/assets/images/favicon.ico' %> 
 

 
    <link rel="manifest" href="/manifest.json"> 
 
    <meta name="msapplication-TileColor" content="#ffffff"> 
 
    <meta name="msapplication-TileImage" content="<%= image_path 'ms-icon-144x144.png' %>"> 
 
    <meta name="theme-color" content="#ffffff"> 
 
    <!-- end Favicon --> 
 

 
    <meta name="description" content="<%= meta_description %>"> 
 

 
    <!-- Facebook Open Graph data --> 
 
    <meta property="og:title" content="<%= meta_title %>" /> 
 
    <meta property="og:type" content="website" /> 
 
    <meta property="og:url" content="<%= request.original_url %>" /> 
 
    <meta property="og:image" content="<%= meta_image %>" /> 
 
    <meta property="og:description" content="<%= meta_description %>" /> 
 
    <meta property="og:site_name" content="<%= meta_title %>" /> 
 

 
    <!-- Twitter Card data --> 
 
    <meta name="twitter:card" content="summary_large_image"> 
 
    <meta name="twitter:site" content="<%= DEFAULT_META["twitter_account"] %>"> 
 
    <meta name="twitter:title" content="<%= meta_title %>"> 
 
    <meta name="twitter:description" content="<%= meta_description %>"> 
 
    <meta name="twitter:creator" content="<%= DEFAULT_META["twitter_account"] %>"> 
 
    <meta name="twitter:image:src" content="<%= meta_image %>"> 
 

 
    <!-- Google+ Schema.org markup --> 
 
    <meta itemprop="name" content="<%= meta_title %>"> 
 
    <meta itemprop="description" content="<%= meta_description %>"> 
 
    <meta itemprop="image" content="<%= meta_image %>"> 
 

 

 

 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
 
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
 
    <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> 
 
    <%= stylesheet_link_tag 'application', media: 'all' %> 
 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
 

 
    <!-- start Mixpanel --> 
 
    <script type="text/javascript">(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" "); 
 
     for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f)}})(document,window.mixpanel||[]); 
 
     mixpanel.init("ENV['MIXPANEL_TOKEN']"); 
 
    </script> 
 
    <!-- end Mixpanel --> 
 

 
    </head> 
 
    <body> 
 
    <%= render 'shared/flashes' %> 
 
    <%= yield %> 
 
    <%= render 'shared/footer' %> 
 
    <%= javascript_include_tag "http://maps.google.com/maps/api/js?libraries=places&key=#{ENV['GMAP_BROWSER_KEY']}" %> 
 
    <%= javascript_include_tag "http://cdn.rawgit.com/mahnunchik/markerclustererplus/master/dist/markerclusterer.min.js" %> 
 
    <%= javascript_include_tag 'application' %> 
 
    <%= yield :after_js %> 
 
    </body> 
 
</html>

最後,JavaScript代碼,允許輸入的自動完成(有「user_input_autocomplete_address」爲ID )是在資產/ JavaScript的/ autocomplete.js和如下:

function initializeAutocomplete(id) { 
 
    var element = document.getElementById(id); 
 
    console.log('coucou'); 
 
    if (element) { 
 
    var autocomplete = new google.maps.places.Autocomplete(element, { types: ['geocode', 'establishment'] }); 
 
    google.maps.event.addListener(autocomplete, 'place_changed', onPlaceChanged); 
 
    } 
 
} 
 

 
function onPlaceChanged() { 
 
    var place = this.getPlace(); 
 

 
    console.log(place); // Uncomment this line to view the full object returned by Google API. 
 

 
    for (var i in place.address_components) { 
 
    var component = place.address_components[i]; 
 
    // console.log(component.types); 
 
    for (var j in component.types) { // Some types are ["country", "political"] 
 
     var type_element = document.getElementById(component.types[j]); // Returns the div with their differents ids or null if the id doesnt exist 
 
     // console.log(document.getElementById(component.types[j])); 
 
     if (type_element) { 
 
     type_element.value = component.long_name; 
 
     } 
 
    } 
 
    } 
 

 
    var formatted_address = document.getElementById('formatted_address'); 
 
    // console.log(international_phone_number); 
 
    if (formatted_address) { 
 
    formatted_address.value = place.formatted_address; 
 
    } 
 

 
    for (var i in place.types) { 
 
    // console.log(place.types); 
 
    // console.log(i); 
 
    // console.log(place.types[i]); 
 
    var type_content = document.getElementById('category_' + i); // Returns the div with their differents ids or null if the id doesnt exist 
 
    // console.log(document.getElementById(component.types[j])); 
 
    if (type_content) { 
 
     console.log(place.types[i]); 
 
     type_content.value = place.types[i]; 
 
    } 
 
    } 
 

 
    var international_phone_number = document.getElementById('phone_number'); 
 
    // console.log(international_phone_number); 
 
    if (international_phone_number) { 
 
    international_phone_number.value = place.international_phone_number; 
 
    } 
 

 
    var name = document.getElementById('name'); 
 
    if (name) { 
 
    name.value = place.name; 
 
    } 
 

 
    var gplace_id = document.getElementById('gplace_id'); 
 
    if (gplace_id) { 
 
    gplace_id.value = place.place_id; 
 
    } 
 

 
    var website = document.getElementById('website'); 
 
    if (website) { 
 
    website.value = place.website; 
 
    } 
 

 
    for (var i in place.opening_hours.weekday_text) { 
 
    var hours_open_in_db = place.opening_hours.weekday_text[i]; 
 
    var hours_open_in_form = document.getElementById('hours_open_day_' + i); 
 
    if (hours_open_in_form) { 
 
     hours_open_in_form.value = hours_open_in_db; 
 
    } 
 
    } 
 
} 
 

 
google.maps.event.addDomListener(window, 'load', function() { 
 
    initializeAutocomplete('user_input_autocomplete_address'); 
 
});

爲了部署這一切在Heroku上,我已經做了以下內容:

  1. 「Heroku的運行分貝:遷移」的終端(因爲我有一些懸而未決 遷移);
  2. 「figaro heroku:set -e production」在終端中,爲了將我所有的API密鑰推送到heroku(我也檢查過這些密鑰的確在heroku的配置變量中)。
  3. 在Google的開發人員控制檯中,在我的項目中和Google地圖JavaScript API中,我確保我的瀏覽器密鑰可用於我的locahost和我的域名。爲了非常準確,我對我的locahost和我的域名使用了相同的密鑰。到目前爲止,在Google的控制檯中,我還沒有設法做的唯一事情就是證明我擁有自己的域名。
  4. 我檢查了我還沒有達到我的任何API配額。
  5. 在我的autocomplete.js文件中,我使用了一些console.log,以便在瀏覽器的檢查器中找出代碼的哪些部分正在工作。看起來,除了在OnPlaceChange回調中的console.log,所有東西都可以工作,因爲Gmap的自動填充建議沒有顯示出來......;
  6. 我知道沒有看到自動填充建議不是與.pac-container CSS元素相關聯的z-index問題,因爲我已經必須解決這個問題,並且由於我的鍵盤箭頭無法達到Gmaps建議。
  7. 我閱讀了這篇關於geocomplete的文章(geocomplete for rails 4 not working in Heroku)並試圖預編譯我的資產。這並沒有導致任何改變。
  8. 在我的瀏覽器檢查器(在「網絡」部分)中,當我在表單輸入中寫入某些內容時,鍵盤上按下的每個新字母都會觸發一個新請求。這些請求名稱是'AutocompletionService.GetPredictions .....'。在「標題」部分中,我可以看到它們是https請求,包含get方法和200個狀態碼。在「迴應」中,我可以看到有似乎是我的API密鑰的錯誤,因爲消息是:

/**/_xdc_._ty4oqn && _xdc_._ty4oqn([3,null,null,"This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console: https://console.developers.google.com/apis/library?project=_ Please ensure this API is activated in the Google Developers Console: https://console.developers.google.com/apis/api/places_backend?project=_ For more information on authentication and Google Maps Javascript API services please see: https://developers.google.com/maps/documentation/javascript/get-api-key"])
我跟着錯誤消息中的鏈接,導致我谷歌的控制檯,然後我回到我的項目和API密鑰,這些密鑰都在服務器端和瀏覽器端解決。再一次,我在Google的控制檯中沒有做的唯一事情就是證明我擁有我的域名。

這是最後一點問題的根源(在這種情況下,我想我需要我的託管服務提供一些幫助)或者你們看到另一個錯誤?

回答

6

我也有同樣的問題。 剛剛轉到谷歌控制檯,啓用「谷歌地方API Web服務」,然後它將解決這個問題。

+0

你是完全正確的!非常感謝!那麼,如何解釋呢?我想這是因爲我在尋找地理編碼(地址)和機構,除了Google Javascript API之外,Google Places API Web服務「隱含地被稱爲」。我對嗎? – Quentin

+0

在5個小時之後挽救了我的一天。謝謝哥們! – domoarrigato

0

在Google API控制檯上啓用「Google Places API Web服務」。它解決了我的問題,當該網站在本地主機工作,但不在Locaweb服務器。

相關問題