我在我的 ruby on rails 项目中有一个正在运行的 Angular 应用程序,现在我想使用 angular.js 实现一些预先输入的搜索,但找不到如何制作的解决方案typeahead directive running
。
问题:如何将 angular typeahead 指令安装到我的项目中?
使用下面描述的当前解决方案,我得到了这个控制台:
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 //= 需要 bootstrap //= 需要 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>
在安装现有的角度指令方面我有什么遗漏吗?例如来自这个链接