Django 插入 AdSense 代码?

发布于 2024-12-01 10:26:01 字数 567 浏览 2 评论 0原文

我正在运行 1.3 Django 教程,并且有一个运行民意调查应用程序的开发服务器。在 Chrome 中,我打开 Web 开发人员小部件并检查页面的结构。我有:

<html>
<head></head>
<body>
<some form stuff>
<body>
<style>code in question</style>
</html>

此页面的模板只是正文标签内的内容。所以 Django 正在添加其他一切。显然,当它这样做时,它会添加这个尾随声明,它似乎包含 Google AdSense css 类。

有人知道这是怎么回事吗?

views.py 导入我的模型,
HTTP404,
HttpResponseRedirect,
HttpResponse,
请求上下文,
get_object_or_404,
渲染到响应,
反向

这些似乎都与 AdSense 无关。正如我所提到的,我刚刚运行教程,尚未开始设置我的网站。

I'm running the 1.3 Django tutorial, and have got a development server running the polls application. In chrome, I open the web developer widget and inspect the structure of the page. I have:

<html>
<head></head>
<body>
<some form stuff>
<body>
<style>code in question</style>
</html>

The template for this page is simply the stuff inside the body tags. So Django is adding on everything else. Apparently when it does so, it adds this trailing declaration, which seems to contain Google AdSense css classes.

Anyone know what's up with that?

views.py imports my models,
Http404,
HttpResponseRediect,
HttpResponse,
RequestContext,
get_object_or_404,
render_to_response,
reverse

none of that seems to have anything to do with AdSense. As I mentioned, I'm just running the tutorial, have not started setting up my site yet.

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

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

发布评论

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

评论(1

翻身的咸鱼 2024-12-08 10:26:01

我可以肯定地说“Django”没有添加任何东西 - 甚至没有添加 htmlbody 标签。它们出现在 Chrome 接收的 HTML 中。但是,Chrome 检查器需要您的页面是有效的 HTML 文档,因此它会重新解释一些内容,包括在必要时添加打开和关闭标记。

如果您查看“查看源代码”,您会看到页面的实际外观。

I can say for certainty that "Django" is not adding anything - not even the html and body tags. They are not present in the HTML that Chrome is receiving. However, the Chrome inspector needs your page to be a valid HTML document, so it re-interprets some things, including adding open and close tags where necessary.

If you looked at View Source instead, you would see what the page actually looks like.

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