angularjs' ng-href'不工作

时间:2014-08-05 14:30:59

标签: javascript angularjs

我正在尝试使用angularjs ng-href创建指向每个id的链接,但是当我刷新页面时,链接不会显示。我甚至关闭了浏览器并清除了缓存,但没有发生任何事情。这是我目前的代码:

 <tr ng-repeat="parcel in parcels">
<td><a ng-href="http://www.proj.com/{{ parcel.id }}/edit/"/>{{ parcel.
 id }}</td>
<td>{{ parcel.tracking_id }}</td>
<td>{{ parcel.shipper_ref_no }}</td>                                     

$scope.parcels = [];
$scope.scans = [];
$scope.missings = [];
$scope.excludeds = [];

$scope.parcels = Outbound.summaryPageData.parcels;
$scope.scans = Outbound.summaryPageData.scans;
$scope.missings = Outbound.summaryPageData.missings;
$scope.excludeds = Outbound.summaryPageData.excludeds;


 });

1 个答案:

答案 0 :(得分:8)

我认为这是一个简单的HTML语法错误 - <a>标记没有内容。尝试更改此内容:

<a ng-href="http://www.proj.com/{{ parcel.id }}/edit/"/>{{ parcel.id }}

到:

<a ng-href="http://www.proj.com/{{ parcel.id }}/edit/">{{ parcel.id }}</a>