我正在尝试使用AngularJs创建一个网站,而我目前无法找到从当前页面的网站名称中获取参数的方法。为了更好地解释,我有以下HTML代码:
$event.preventDefault()
此时此页面显示在以下浏览器链接上:
<div ng-controller="attendantsController">
<div class="row">
<div id="{{student.id}}" class="col-sm-4 col-md-3" ng-repeat="student in vm.students">
<div class="caption">
<h3>{{student.user_id}}</h3>
<p>{{student.faculty}}</p>
<p>
<a href="/#!/internships/?/attendants/{{student.id}}" class="btn btn-primary" role="button">More Info</a>
</p>
</div>
</div>
</div>
</div>
我想要做的是从/实习/ 4 /服务员/中取4并将其添加到哪里?在我的代码中。我怎样才能做到这一点?谢谢。