将 google chrome 框架与 Django 一起使用

发布于 2024-11-16 07:10:32 字数 568 浏览 0 评论 0原文

我正在尝试在我的 Django 应用程序中使用 Google Chrome Frame。 将 插入标头并不能解决问题。

现在,我的标题是这样的:

<head>
  <meta http-equiv="X-UA-Compatible" content="chrome=1"> 
  <title>Amuse Me</title>
  <link href='/static/style.css' rel='stylesheet' type='text/css' />
  <script type="text/javascript" src="/static/jquery-1.6.0.min.js"></script>
  <script type="text/javascript" src="/static/base.js"></script>
</head>

有什么建议吗?

I am trying to use Google Chrome Frame in my Django app.
Inserting <meta http-equiv="X-UA-Compatible" content="chrome=1"> into the header doesn't do the trick.

Right now, this is what my header looks like:

<head>
  <meta http-equiv="X-UA-Compatible" content="chrome=1"> 
  <title>Amuse Me</title>
  <link href='/static/style.css' rel='stylesheet' type='text/css' />
  <script type="text/javascript" src="/static/jquery-1.6.0.min.js"></script>
  <script type="text/javascript" src="/static/base.js"></script>
</head>

Any suggestions?

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

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

发布评论

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

评论(2

む无字情书 2024-11-23 07:10:32

您的网页可能会按照 quirksblog 中的建议进行缓存:

缓存

当我做研究时,我使用了一个
测试页面并不断更改
中的标签。问题
IE/Frame 似乎正在缓存
不仅是页面,还包括其中
渲染引擎应该显示它。
因此,简单的页面刷新不会
在这里为您提供帮助。

幸运的是 Twitter 用户 jdalton 来了
提出解决方案:只需附加一个
伪查询,例如 ?123 到页面
网址。这会绕过缓存并
强制浏览器重新评估
标签。

Your page might be cached as suggested in quirksblog:

Cache

When I was doing research I used one
test page and constantly changed the
tags in the . The problem
was that IE/Frame seemed to be caching
not only the page, but also in which
rendering engine it should be shown.
Therefore a simple page refresh won’t
help you here.

Fortunately Twitter user jdalton came
up with a solution: simply append a
pseudo-query such as ?123 to the page
URL. That bypasses the cache and
forces the browser to re-evaluate the
tags.

如日中天 2024-11-23 07:10:32

在 Google Chrome 的开发者工具中打开您的代码并查找 html 错误,并检查您的资源标头。

Open your code in Google Chrome's developer tools and look for html errors, and check your resource headers.

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