我有一個視圖讓我們假設index.cshtml
哪個使用服務獲取數據並在表中顯示每行可點擊。當我點擊一行後,它應該導航到其他頁面,讓我們稱它爲details.html
與特定行的相應信息。如何導航到其他頁面並單擊ng表單中的相應數據
`<table class="table table-bordered table-condensed table-hover table-responsive">
<thead>
<tr class="bg-primary">
<th>Id</th>
<th>Name</th>
<th>Description</th>
<th>Role</th>
</tr>
</thead>
<tbody ng-repeat="user in Users">
<tr ng-click="GetUser(Users,user.userLoginID)" style="cursor:pointer" >
<td>{{ user.userLoginID }}</td>
<td>{{ user.userName }}</td>
<td>{{ user.descOfUser }}</td>
<td>{{ user.userRole }}</td>
</tr>
</tbody>
</table>`
我正面臨的問題是如何使用行數據導航到其他頁面。我嘗試使用query string
但查詢字符串我角停止在該頁面上工作。請告訴我是否必須使用angular-route
那麼該怎麼做。
好吧,你的意思是說'
是的,tr不能是一個鏈接,所以你將不得不修改標記,或者在某些或全部td中添加一個錨點。 –
這是一個如何配置路線的例子https://docs.angularjs.org/api/ngRoute/service/$route#example –
相關問題