使用 MVC 显示数据库中的文本的最佳方式是什么
我创建了一个 MVC 应用程序,它工作正常。我创建了一个视图,其中几乎没有视图数据变量。我用我的数据库值填充这些,并且它们在循环中更新。 此方法需要 40-50 秒才能显示实际页面内容。那么有没有其他方法来显示我们到目前为止获得的内容并刷新它直到所有内容加载完毕。
请告诉我如何刷新页面?
谢谢, 拉克斯米拉尔·梅纳里亚
I have created a MVC application its working fine. I have created a view which have few viewdata variables. I am filling these with my database values, and they are updated in loop.
This method take 40-50 seconds to display actual page contents. So is there any other way to display the contents which we get till now and do refresh it till all contents are loaded.
Please let me know how can I refresh the page ?
Thanks,
Laxmilal Menaria
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您面临的问题在当今非常典型。最流行的解决方案是使用 AJAX 并在检索数据时显示数据。
The problem you are facing is very typical nowadays. The most popular solution is to use AJAX and show data as they are retrieved.