我想用他的位置创建一个用户。在使用djongo或mongodb数据库时,应该使用哪些模型字段。
from djongo import models
# Create your models here.
class User(models.Model):
id = models.IntegerField(unique=True)
name = models.CharField(max_length=True)
location = models.??
在使用PostGres时,我可以使用models.PointField(),但有关如何在MongoDB NOSQL上进行操作的任何建议