-1
我無法在AngularJS表達式中顯示錨標籤。問題是,當我試圖展示一個錨定標記作爲從API被提取的圖標,它只是顯示原始路徑在角度Js表達式中顯示achor標籤
a href='../UserControls/DownloadRLCSFile.ashx?Path=\\dotnetdev\csv\RLCSDocuments\Registrations\ABACF\E.S.I.C. Registration\Sample.xlsx' target='_blank' download><i class='fa fa-download' style='font-size: 13pt;' ></i></a>
請找到下面的代碼:
<div id="Div2" ng-controller="BasicRegulatoryDetail">
<h4 class="padder-sm b-b"><b>Regulatory Updates</b></h4>
<div>
<div class="table-responsive">
<table class="table table-striped bg-white ">
<tbody>
<tr ng-repeat="bs in BasicInfo" >
<td><asp:HyperLink ID="HyperLink1" NavigateUrl="~/RLCS_Connect/RegulatoryUpdateDetails.aspx?Subject={{bs.Subject}}" runat="server">{{bs.Subject}}</asp:HyperLink></td>
<td>{{bs.Document_Path}}</td> //here i am facing the problem
</tr>
</tbody>
</table>
</div>
</div>
</div>