2015-01-08 97 views
-3

我試圖使用intl-tel-input與Rails應用程序和我收到此錯誤:從這個禰的代碼未捕獲的ReferenceError:未定義goog(匿名函數)

// includes 
goog.require('i18n.phonenumbers.AsYouTypeFormatter'); 
goog.require('i18n.phonenumbers.PhoneNumberFormat'); 
goog.require('i18n.phonenumbers.PhoneNumberUtil'); 

Uncaught ReferenceError: goog is not defined (anonymous function)

請告訴如何解決它?

+0

我建議定義'goog'。 – ptd

回答

0

我解決我的問題是:

加入

gem 'intl-tel-input-rails' 

我的Gemfile

相關問題