3

我在 myproject/templates/items/index.html 中添加了一个链接,如下所示

<a href="www.google.com">Search More</a>

我希望当用户点击它时,她会访问 google.com。但是,现在的结果是这个链接是“myhost/items/www.google.com”而不是“www.google.com”。

(我正在修改一个现有的应用程序,我不得不承认我还没有完全阅读 django doc)

4

2 回答 2

15

每当您将外部链接传递给<a href=''>标签时,请始终使用http. 所以它会像:

<a href="http://www.google.com">Search More</a>
于 2012-12-02T08:12:32.797 回答
5

你忘记了协议:

<a href="http://www.google.com">Search More</a>
于 2012-12-02T08:06:07.407 回答