AngularJS 将变量从自定义指令传递到模板
AngularJS pass variable from custom directive to template
我做了一个自定义指令:
js 部分:
angular.module("myDirectives", []).directive("ngShowbox", function(){
return {
restrict: "E",
scope: {
title: "="
},
template: "<a href='#' ng-click='show($event)'>{{title}}</a>",
controller: function($scope, $element){
$scope.show = function(event){
// do something...
}
}
}
});
html 部分:
<ng-showbox title="whatToPutHere??"></ng-showbox>
我想从标题属性传递一些文本,
然后我的模板将显示文本。
我怎样才能做到?
非常感谢:)
在指令范围内使用@:-
scope: {
title: "@"
},
Plunker 给你:)
我做了一个自定义指令:
js 部分:
angular.module("myDirectives", []).directive("ngShowbox", function(){
return {
restrict: "E",
scope: {
title: "="
},
template: "<a href='#' ng-click='show($event)'>{{title}}</a>",
controller: function($scope, $element){
$scope.show = function(event){
// do something...
}
}
}
});
html 部分:
<ng-showbox title="whatToPutHere??"></ng-showbox>
我想从标题属性传递一些文本, 然后我的模板将显示文本。 我怎样才能做到?
非常感谢:)
在指令范围内使用@:-
scope: {
title: "@"
},
Plunker 给你:)