gpt4 book ai didi

mysql - 将 Angular 与数据库中的动态数据绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 00:02:27 25 4
gpt4 key购买 nike

我对 Angularjs 还很陌生,我想实现一个类似于 jsfiddel http://jsfiddle.net/NfPcH/93/ (从官方 Angular 文档中检索)的可编辑表格如何使用从 MVC 或 ViewBag 中的数据库检索的数据列表来填充表格,而不是硬编码数据?

例如,我想代替下面的 MVC 表来实现相同的目标,但使用 Angular 来使表可编辑。

@if (ViewBag.Session != null)
{
<table class="table table-hover">
<tr>
<th>
ID
</th>
<th>
Name
</th>
<th>
Surname
</th>
<th>
House
</th>
<th>
Address
</th>
<th>
Locality
</th>
<th>
Contact
</th>
<th>
Contact 2
</th>
<th>
Contact 3
</th>
<th>
Reply
</th>
<th>
Edit
</th>
</tr>
@foreach (var item in ViewBag.Session)
{
<tr>
<td>
@item.ID
</td>
<td>
@item.Name
</td>
<td>
@item.Surname
</td>
<td>
@item.House
</td>
<td>
@item.Address
</td>
<td>
@item.Locality
</td>
<td>
@item.Contact1
</td>
<td>
@item.Contact2
</td>
<td>
@item.Contact3
</td>
<td>
@item.Reply
</td>
</tr>
}
</table>

另外,当一行被更改并保存时,如何将数据发送回后台保存到数据库中?

最佳答案

我认为阅读快速入门教程、培训或书籍对您来说是个好主意。

这里有一个链接,可以开始在服务器端使用 Web api 以及客户端上的 AngularJS,它只是从服务器加载项目列表。

http://www.youtube.com/watch?v=Ja2xDrtylBw

关于mysql - 将 Angular 与数据库中的动态数据绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24907160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com