答案 0 :(得分:3)
你错过了使用角度插值(双花括号),也尝试在视图代码中没有太多功能,这应该在控制器/专用服务中。
见下面的代码示例
<a ng-click="GetLiveStatus(item)">
function LiveStatusController($location) {
$scope.GetLiveStatus = function(item){
// Your code here ...
// nav part
$location.path(<'your path string here'>, {<your path params here>});
}
}
答案 1 :(得分:0)
试试这个
<a ng-click="getDetails(item)"></a>
在控制器中
$scope.getDetails = function(item){
var productId = item.productId; // your productId
var code = item.code; // your product code, you can use it however you want
}