2017-10-16 53 views
-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> 

回答