我正在使用一个将href元素附加到标记上的库。在这个链接上,我需要调用范围内的angularjs函数。有点像...
<a href="{{someFunction()}}"></a>
注意:我通过javascript从另一个库(nvd3.js)附加此href,实际上没有写入,因为如果我是,我可以轻松使用ng-click或ng-href。
答案 0 :(得分:19)
所以我对这个答案并不满意,因为它并没有真正使用优雅的角度解决方案。
这是我的解决方案:http://jsfiddle.net/jjosef/XwZ93
HTML:
<body class="wrapper" ng-app="ExampleApp">
<a my-href="buildUrl('one', aVariable, 'three')">This is my a tag with a function that builds the url</a>
</body>
JS:
angular.module('ExampleApp', []);
angular.module('ExampleApp').run(function($rootScope) {
$rootScope.buildUrl = function() {
var link = [];
for(var i = 0; i < arguments.length; i++) {
link.push(arguments[i].toLowerCase());
}
return '/#!/' + link.join('/');
};
$rootScope.aVariable = 'two';
});
angular.module('ExampleApp').directive('myHref', function($parse) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var url = $parse(attrs.myHref)(scope);
element.attr('href', url);
}
}
});
答案 1 :(得分:14)
这有点令人费解。
CAVEAT :这非常,非常hacky,绝对正是你不应该做的角度,但我猜你知道这个和库是让你的生活变得艰难......
首先,与onclick
不同,href
不会将字符串解释为javascript。相反,你必须使用
<a href="javascript:someFunction()"></a>
但仅此一项不会使其发挥作用,因为someFunction()
不是document
上的方法,而是控制器上的方法,因此我们需要首先获得控制器:
<a href="javascript:angular.element(
document.getElementById('myController')).scope().someFunction();"></a>
myController
指的是用ng-controller
修饰的DOM元素,例如
<div data-ng-controller="SomeController" id="myController"> ... </div>
如果someFunction
修改了视图的状态,您还需要使用$scope.apply
,即
<a href="javascript:angular.element(document.getElementById('myController')).
scope().$apply(someFunction)"></a>
请注意,您不需要{{ }}
语法,因为您直接调用javascript,而不是要求angular修改标记。
答案 2 :(得分:8)
您应该使用ng-click这里。
答案 3 :(得分:2)
最简单的解决方案是
<a href="" ng-click="someFunction(x,y,z)">Go</a>
href =“”很重要,否则悬停光标样式不会更改为指针
答案 4 :(得分:0)
使用{{someFn}}时,您需要使用$ parse()来处理代码。
答案 5 :(得分:0)
我在这里混合了一些东西,我让它有效。
我有一个带有一些选项的菜单,每个选项在控制器上调用不同的方法。
<span ng-show="hoverOptions" ng-mouseleave="hoverOut()" class="qk-select ui-select-container qk-select--div">
<ul>
<li ng-repeat="option in menuOptions"><a href="javascript:void(0);" ng-click="callFunction(option.action)">{{option.name}}</a></li>
</ul>
</span>
控制器中的callFunction方法定义如下:
$scope.callFunction = function (name){
if(angular.isFunction($scope[name]))
$scope[name]();
}
菜单选项也以这种方式在控制器中定义:
$scope.menuOptions = [{action: "uploadPhoto" , name:"Cargar foto"}, {action: "logout", name:"Cerrar sesión"}, {action: "createUser", name:"Nuevo usuario"}];
希望它有所帮助。
答案 6 :(得分:0)
解决方案:https://embed.plnkr.co/bhMcEO/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>$window or $location to Redirect URL in AngularJS</title>
<link rel="stylesheet" href="style.css" />
<script src="https://code.angularjs.org/1.4.1/angular.js"></script>
<script>
var app = angular.module('RedirectURLApp', []);
app.controller('RedirectURLCtrl', function($scope, $window) {
$scope.name = 'Anil';
$scope.RedirectToURL = function() {
var host = $window.location.host;
var landingUrl = "http://www.google.com";
alert(landingUrl);
$window.location.href = landingUrl;
};
});
</script>
</head>
<body ng-app="RedirectURLApp">
<div ng-controller="RedirectURLCtrl">
<h2>$window or $location to Redirect URL in AngularJS</h2>
<p>Hello {{name}},</p>
Click to Redirect <a href="" ng-click="RedirectToURL()">Click Me!</a>
</div>
<div><h4><a href="http://www.code-sample.com/2015/06/redirect-to-new-page-using-location-or.html">For more detail..</a></h4></div>
</body>
</html>