ruby on rails プロジェクトで実行中の Angular アプリがあり、angular.js を使用して先行入力検索を実装したいのですが、.js を作成する方法を見つけることができませんtypeahead directive running
。
質問: プロジェクトに angular typehead ディレクティブをインストールする方法を教えてください。
以下に説明する現在のソリューションでは、このコンソールを取得しています:
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/template/typeahead/typeahead.html
- ng-app は機能しており、関連する js および css ファイルも html にリンクされています。
私はこのソースに従っています:bootstrap-ui-angularjs
私がすでにしたこと:
- ディレクトリ
angular-ui-bootstrap.js
に ダウンロードpublic\assets\javascripts
通常どおりアセット パイプラインを明示します。
//= jquery が必要 //= jquery_ujs が必要 //= jquery.tokeninput が必要 //= ブートストラップが必要 //= angular が必要 //= angular-ui-bootstrap が必要 //= require_tree .
3.js
ページにあるかどうかを確認しました:(問題のスクリプトのみ)
<link href="/assets/bootstrap.css?body=1" media="all" rel="stylesheet" type="text/css" />
<script src="/assets/bootstrap.js?body=1" type="text/javascript"></script>
<script src="/assets/angular.js?body=1" type="text/javascript"></script>
<script src="/assets/angular-ui-bootstrap.js?body=1" type="text/javascript"></script>
my ng-app:
<div ng-app='plunker'>
<div class='container-fluid' ng-controller="TypeaheadCtrl">
<pre>Model: {{result | json}}</pre>
<input type="text" ng-model="result" typeahead="suggestion for suggestion in cities($viewValue)">
</div>
</div>
<script>
angular.module('plunker', ['ui.bootstrap']);
function TypeaheadCtrl($scope, $http, limitToFilter) {
//http://www.geobytes.com/free-ajax-cities-jsonp-api.htm
$scope.cities = function(cityName) {
return $http.jsonp("http://gd.geobytes.com/AutoCompleteCity?callback=JSON_CALLBACK &filter=US&q="+cityName).then(function(response){
return limitToFilter(response.data, 15);
});
};
}
</script>
既存の角度ディレクティブのインストールに関連して欠けているものはありますか? たとえば、このリンクから