小编sfa*_*fas的帖子

angularjs'ng-href'无效

我正在尝试使用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>                                     
Run Code Online (Sandbox Code Playgroud)

$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;


 });
Run Code Online (Sandbox Code Playgroud)

javascript angularjs

2
推荐指数
1
解决办法
2万
查看次数

标签 统计

angularjs ×1

javascript ×1