0

我有个问题。我需要创建一个 Web 应用程序,它应该可以工作并且看起来像一个普通的桌面应用程序,因此可以使用窗口、对话框等,而不是每次网站都刷新,但我不确定我应该使用什么。我对php(一个相当简单的站点)只有一点经验。我想我需要客户端站点上的 ajax 来做到这一点(可能是 jQuery),但是我应该在服务器站点上使用什么以及如何在不刷新站点的情况下加载整个页面?我应该使用 PHP 还是 python 或其他东西?也许有一些框架?

感谢您的任何建议。

4

2 回答 2

1

如果您想要丰富的客户端交互,请考虑使用 MVC /MVVM js 框架:

每个人都有优缺点,在这里你可以找到一个聪明的比较资源

一旦您下载了引导程序 [css、js、图像],就不会出现页面重新加载问题,并且应用程序将像桌面应用程序一样运行。

所有数据都从服务器获取并保存到服务器:进一步的请求以 JSON / XML 格式发出,可能采用RESTful方式。您可以通过多种方式设置此类 Web 服务,其中包括:

于 2012-09-26T13:54:59.283 回答
0

As I am more familiar with MS technologies I would use ASP.NET MVC, and then on the client side you can use Telerik controls which are good and free. jQuery is also a great option for the client side development. For developing ASP.NET MVC you can use the Visual Studio Express which is free as well.

However, I do not know your specifications. Maybe it would not be good enough for you. Another option that you have is using WPF (MS again), with which you can really develop very rich behavior web applications.

于 2012-09-26T13:42:32.460 回答