我已经为搜索框创建了一个指令,我希望将其用于不同的视图。这是指令 -
angular.module('jobSeekerApp')
.directive('searchBoxDirective', function () {
return {
restrict: 'E',
templateUrl: 'templates/searchbox-template.html',
};
});
指令的模板 -
<span class="searchButton"><i class="fa fa-search fa-2x"></i></span>
<input ng-change="search()" ng-model="searchTerm" ng-keydown="deleteTerm($event)" type="text" id="search-box" style="width: 0px; visibility:hidden;"/>
我想在两个看起来像这样的视图上使用这个指令 -
查看1 -
<div class="panel panel-default companies" ng-repeat="company in companies.companiesList">
<div class="panel-heading text-center"><a ng-href="/companies/{{company.id}}" class="hvr-sink"><h3 class="well">{{company.company_name}}</h3></a></div>
<div class="panel-body text-center flexcontainer">
<div>Location: {{company.location}}</div>
<div>Founded In: {{company.founded_year}}</div>
<div ng-if="company.opening">Opening: Yes</div>
<div ng-if="!company.opening">Opening: No</div>
<div>Number Of Openings: {{company.no_openings}}</div>
</div>
</div>
查看2 -
<div class="panel panel-default jobs" ng-repeat="job in jobs.jobsList">
<div class="panel-heading text-center"><a href="{{job.career_url}}" target='_blank' class="hvr-sink"><h3 class="well">{{job.job_name}}</h3></a></div>
<div class="panel-body text-center flexcontainer">
<div>Company: {{job.company_name}}</div>
</div>
</div>
正如您所看到的,我在视图中使用了别名companies
和jobs
,因此我的指令无法影响它所包含的视图。如果我使用{{1在我的模板中,或companies
,然后它工作正常。例如,如果将模板更改为 -
jobs
然后它适用于与<span class="searchButton"><i class="fa fa-search fa-2x"></i></span>
<input ng-change="companies.search()" ng-model="companies.searchTerm" ng-keydown="companies.deleteTerm($event)" type="text" id="search-box" style="width: 0px; visibility:hidden;"/>
控制器相关联的视图,同样适用于companies
。
如何将指令与相应的控制器实例一起使用? 谢谢。
答案 0 :(得分:3)
为搜索
创建一个简单的视图创建自己的控制器
此控制器在服务中搜索记录并将数据放入服务变量
this.searchResult = [];
this.search = function(searchText){
// code to search
this.searchResult = Result;
}
现在,您想要使用此结果,请在当前控制器中使用此服务变量上的监视,例如:
$scope.$watch(function() { return servicename.searchResult ; }, function(newVal, oldval) {
if(newval != oldval){
$scope.data = servicename.searchResult;
/* Do the rest of stuff */
}
}, true);
答案 1 :(得分:2)
使用隔离范围并明确将搜索词传递给您的指令。类似的东西:
angular.module('jobSeekerApp')
.directive('searchBoxDirective', function () {
return {
restrict: 'E',
scope: {
searchTerm: '=' <-- you can use '@' if you don't need two-way binding
},
templateUrl: 'templates/searchbox-template.html',
};
});
您没有显示实际使用指令的位置,但是您可以通过属性传递scope属性(这是在<div>
上使用您的指令):
<div search-box-directive search-term="companies.searchTerm"></div>
答案 2 :(得分:1)
由于搜索功能是异步的,我建议不要使用ng-change
来调用它。而是在搜索图标上使用ng-click
。
<span class="searchButton" ng-click="$ctrl.searchFn()">
<i class="fa fa-search fa-2x"></i>
</span>
<input ng-model="$ctrl.searchTerm" type="text" id="search-box">
在指令中,使用隔离范围和bindToController
。
app.directive('searchBoxDirective', function () {
return {
restrict: 'E',
scope: { 'searchTerm': "=",
'searchFn': "&"
},
controller: function () {},
controllerAs: '$ctrl',
bindToController: true,
templateUrl: 'templates/searchbox-template.html'
};
});
<search-box-directive search-term="companies.searchTerm"
search-fn="companies.search()" >
</search-box-directive>
<search-box-directive search-term="jobs.searchTerm"
search-fn="jobs.search()" >
</search-box-directive>
search-term
属性创建从父作用域到指令隔离范围的双向绑定。 search-fn
属性从父作用域创建表达式绑定以隔离作用域。