Django Elastic Search: AttributeError: type object 'PostDocument' has no attribute 'Django'

Django Elastic Search: AttributeError: type object 'PostDocument' has no attribute 'Django'

我对 Django 中的弹性搜索非常陌生... 当我运行这个命令时,python3 manage.py search_index --rebuild 它触发了我这个错误:我没有弄错它

File "/home/pyking/.local/lib/python3.6/site-packages/django_elasticsearch_dsl/registries.py", line 39, in register_document
    django_meta = getattr(document, 'Django')
AttributeError: type object 'PostDocument' has no attribute 'Django'

这是我的documents.py

from django_elasticsearch_dsl import DocType, Index
from blog2.models import Article

posts = Index('articles')

@posts.doc_type
class PostDocument(DocType):
    class Meta:
        model = Article

        fields = [
            'alias',
            'author',
            'title',
            'body',
            'category',
        ]

这是我的模型:

class Article(models.Model):
    alias = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
    author = models.ForeignKey(Author, on_delete=models.CASCADE, related_name='author')
    title = models.CharField(max_length=200)
    body = models.TextField()
    category = models.ForeignKey(Category, on_delete=models.CASCADE)

我没有发现我的代码有什么问题,即使它没有触发我的代码问题,它却触发了一些奇怪的错误..

它不是 Meta class,它应该是 Django class 你应该创建并告诉模型,字段和其他与此文档相关的配置及其模型. 请参阅文档及其示例。 https://github.com/sabricot/django-elasticsearch-dsl#quickstart

from django_elasticsearch_dsl import Document, Index
from django_elasticsearch_dsl.registries import registry
from blog2.models import Article

posts = Index('articles')

@registry.register_document
@posts.document
class PostDocument(Document):
    class Django:
        model = Article

        fields = [
            'alias',
            'author',
            'title',
            'body',
            'category',
        ]