作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Django Elasticsearch
版本6.1.0
,目前遇到这种错误:
django_elasticsearch_dsl.exceptions.ModelFieldNotMappedError:
Cannot convert model field 'price' to an Elasticsearch field
class Product(models.Model):
description = models.CharField(max_length=100)
price = models.DecimalField(max_digits=9, decimal_places=2)
quantity = models.IntegerField()
from django_elasticsearch_dsl import DocType, Index
from crudapp.models import Product
product = Index('products')
@product.doc_type
class ProductDocument(DocType):
class Meta:
model = Product
fields = ['description', 'price', 'quantity']
最佳答案
引起此错误的小数字段。
从字段中删除它,然后执行类似的操作。
from django_elasticsearch_dsl import DocType, Index,fields
class ProductDocument(DocType):
price = FloatField(attr=None, **elasticsearch_properties)
class Meta:
. . .. . . . .
关于django - ElasticSearch_ModelFieldNotMappedError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51759969/
我正在使用Django Elasticsearch版本6.1.0,目前遇到这种错误: django_elasticsearch_dsl.exceptions.ModelFieldNotMappedEr
我是一名优秀的程序员,十分优秀!