我正在尝试使用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;
});
最佳答案
我认为这是一个简单的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>
关于javascript - angularjs 'ng-href'无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25141383/