MVC 应用程序中的 jQuery
如何在 mvc 2 应用程序中使用 jQuery 使用数据表从数据库中获取数据?
How to use jQuery in mvc 2 application for fetching data from database using datatable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
jQuery 不允许您直接从数据库获取数据。为了接收此类数据,您必须对后端类(控制器)进行 Ajax 调用。控制器可以调用模型,模型可以检索并可能准备所需的数据。然后你只需返回它(JSON 格式更好)。
jQuery does not allow you to fetch data directly from database. In order to receive such data you have to make an Ajax call to your backend class (controller). Controller can call model, which can retrieve and maybe prepare needed data. Then you just return it (JSON format is preferable).
我认为您的目标是在用户界面上显示表格数据。如果我是对的,那么你可以尝试使用 JqGrid 吗?正如Ventus所说,Json格式更可取
I think your objective is to show a tabular data on the UI. If i'm right, then can you try using JqGrid? As Ventus said, Json format is preferable
你好,
您必须创建与控制器对话并从控制器获取数据的ajax。这样你就可以控制了。我不认为你可以做到这一点,除非你有一些闪存应用程序,其中包含所有编码,但这并不明智。
使用控制器并将结果传递到您的前端应用程序
HI,
you have to create ajax that talks to your controller and fetch data from the controller. This way you have control. I do not thing you can do it straing, unless you have some flash app with everything encoded inside, tho this is not wise.
Use controller and pass results to your front end app
安装nuget包
Install-Package jquery.datatables
数据表参考:https ://www.nuget.org/packages/jquery.datatables实现数据表,例如:
https://datatables.net/examples/basic_init/zero_configuration.html
install nuget package
Install-Package jquery.datatables
for datatable refer to : https://www.nuget.org/packages/jquery.datatablesimlpement datatable like :
https://datatables.net/examples/basic_init/zero_configuration.html