Django 站点地图不返回项目

发布于 2024-11-28 02:47:28 字数 1078 浏览 2 评论 0原文

我创建了一个基本的站点地图。不过我希望让它更符合谷歌的要求。

我有一个可以工作的查询集,但是当我尝试访问自定义模板中的 url.items 时,我只得到默认的“优先级”、lastmod 等...

Sitemaps.py

from django.contrib.sitemaps import Sitemap

from myapp.models import *

class mySitemap(Sitemap):
    changefreq = "daily"
    priority = 0.5

    def items(self):
        articles =
            sync_Binder.objects.select_related() \
            .filter(sync_binder_index__platform_id > = '2') \
            .order_by('sync_binder_index__rank')
        return articles

    def lastmod(self, obj):
        return obj.modifieddate

urls.py

sitemaps = {'mysitemap': mySitemap,}

urlpatterns = patterns('django.contrib.sitemaps.views',
    (r'^%ssitemap.xml$' % PROJECT_URL, 'sitemap',
        {'sitemaps':sitemaps, 'template_name':'sitemap.html'}),
)

sitemap.html 包含以下循环

{% for url in urlset %}
    {{ url.items }}
{% endfor %}

...但是我只从包含图像、标题等的文章查询集中获得默认值,

没有任何建议?

谢谢 S

I have a basic sitemap created. However I'm looking to make it more Google compliant.

I have a queryset that works however when I try and access the url.items in my custom template I only get the default 'priority', lastmod etc...

Sitemaps.py

from django.contrib.sitemaps import Sitemap

from myapp.models import *

class mySitemap(Sitemap):
    changefreq = "daily"
    priority = 0.5

    def items(self):
        articles =
            sync_Binder.objects.select_related() \
            .filter(sync_binder_index__platform_id > = '2') \
            .order_by('sync_binder_index__rank')
        return articles

    def lastmod(self, obj):
        return obj.modifieddate

urls.py

sitemaps = {'mysitemap': mySitemap,}

urlpatterns = patterns('django.contrib.sitemaps.views',
    (r'^%ssitemap.xml

sitemap.html contains the following loop

{% for url in urlset %}
    {{ url.items }}
{% endfor %}

...yet I only get the defaults nothing from my articles query set which contains images, headlines etc

Any suggestions?

Thanks
S

% PROJECT_URL, 'sitemap', {'sitemaps':sitemaps, 'template_name':'sitemap.html'}), )

sitemap.html contains the following loop

...yet I only get the defaults nothing from my articles query set which contains images, headlines etc

Any suggestions?

Thanks
S

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文