如何获取这段代码的标题和内容?

发布于 2024-08-20 04:33:46 字数 1034 浏览 8 评论 0原文

我得到这个字符串:

{'id': 1, 'weight': 101, 'attrs': {'date_added': 1265274382, 'group_id': 1}}{'id': 2, 'weight': 100, 'attrs': {'date_added': 1265274382, 'group_id': 1}}{'id': 4, 'weight': 100, 'attrs': {'date_added': 1265274382, 'group_id': 2}}

我想获取真实的数据(标题和内容)。

我的观点是:

from djangosphinx.models import SphinxSearch,SphinxQuerySet
def xx(request):
    queryset =Document.search.query(u'test')
    return HttpResponse(queryset)#
    #return render_to_response('a.html',{'a':queryset})#

我的模型是:

import datetime

class Group(models.Model):
    name = models.CharField(max_length=32)

class Document(models.Model):
    group       = models.ForeignKey(Group)
    date_added  = models.DateTimeField(default=datetime.datetime.now)
    title       = models.CharField(max_length=32)
    content     = models.TextField()

    search      = SphinxQuerySet(index="test1")

    class Meta:
        db_table = 'documents'

如何更改我的代码以显示标题和内容。

I get this string:

{'id': 1, 'weight': 101, 'attrs': {'date_added': 1265274382, 'group_id': 1}}{'id': 2, 'weight': 100, 'attrs': {'date_added': 1265274382, 'group_id': 1}}{'id': 4, 'weight': 100, 'attrs': {'date_added': 1265274382, 'group_id': 2}}

I want to get the real data (title and content).

My view is:

from djangosphinx.models import SphinxSearch,SphinxQuerySet
def xx(request):
    queryset =Document.search.query(u'test')
    return HttpResponse(queryset)#
    #return render_to_response('a.html',{'a':queryset})#

And my model is:

import datetime

class Group(models.Model):
    name = models.CharField(max_length=32)

class Document(models.Model):
    group       = models.ForeignKey(Group)
    date_added  = models.DateTimeField(default=datetime.datetime.now)
    title       = models.CharField(max_length=32)
    content     = models.TextField()

    search      = SphinxQuerySet(index="test1")

    class Meta:
        db_table = 'documents'

How can I change my code to show the title and content.

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

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

发布评论

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

评论(1

oО清风挽发oО 2024-08-27 04:33:46

我认为这个链接应该对您有帮助 http ://pkarl.com/articles/guide-django-full-text-search-sphinx-and-django-sp/
根据提供的信息:

您必须先对结果进行切片才能使用它们

所以你会

list(queryset)

I think this link should be helpful for you http://pkarl.com/articles/guide-django-full-text-search-sphinx-and-django-sp/
According to the information provided:

You have to slice the results before you can use them

So you would have

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