MVC 应用程序中的 jQuery

发布于 2024-10-23 21:49:56 字数 47 浏览 2 评论 0原文

如何在 mvc 2 应用程序中使用 jQuery 使用数据表从数据库中获取数据?

How to use jQuery in mvc 2 application for fetching data from database using datatable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

长安忆 2024-10-30 21:49:56

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).

时光瘦了 2024-10-30 21:49:56

我认为您的目标是在用户界面上显示表格数据。如果我是对的,那么你可以尝试使用 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

花开浅夏 2024-10-30 21:49:56

你好,
您必须创建与控制器对话并从控制器获取数据的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

娇俏 2024-10-30 21:49:56

安装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.datatables

imlpement datatable like :
https://datatables.net/examples/basic_init/zero_configuration.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文