我正在创建布局。我包括超链接,但它不起作用。我用这种格式写了'href'。
<div ng-repeat="productRow in products| chunkBy: 3">
<div class="row" ng-repeat="product in productRow">
<div class="col-xs-4">{{product}}</div>
</div>
</div>
当然我把它带进了标签。点击此链接后,它没有反应。
答案 0 :(得分:1)
试试这个:
<a href="C:\Users\Dmitry\PycharmProjects\save&edit\templates\form_action.html">My Link</a>
答案 1 :(得分:0)
定义的相对路径<a href="templates/form_action.html">My Link</a>
。最后它有效。