Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们的 Django 应用程序在 Chrome 中运行没有问题,但在使用 IE 时很烦人。
运行应用程序 usingmanage.py runserver工作正常,但在我们的生产站点中,它非常慢。逐页导航非常慢。
manage.py runserver
我们如何提高应用在 IE 中的性能?我们已经尝试减少我们的 js 和 css 行并优化我们的 js 和 css 代码,但这并没有帮助。
Django 不对您的网站在 IE 中运行缓慢负责。可能原因如下:
1)您的页面中可能有大量图像/javascript。使用 YSLOW/PSO 对其进行调试。
2)尝试使用像apache这样的网络服务器而不是django。