如何在指令中设置插值?我可以从以下代码中读取正确的值,但我无法设置它。
js:
app.directive('ngMyDirective', function () {
return function(scope, element, attrs) {
console.log(scope.$eval(attrs.ngMyDirective));
//set the interpolated attrs.ngMyDirective value somehow!!!
}
});
html:
<div ng-my-directive="myscopevalue"></div>
myscopevalue
我的控制器范围的值在哪里。