我正在使用Django频道,我希望能够将其他字段与帖子的json
数据一起保存到数据库中。
我的Postmie
模型中有一个外键,指向我的用户模型中的email
字段。 Postmie
是负责将帖子保存到数据库的模型。外键创建一个名为email_id
的字段。当我将帖子保存到数据库时,我还想抓住发布帖子的用户的电子邮件,并将其保存在数据库中。我该怎么做呢?我没有使用Django表单。
我的Postmie
模型与Django频道教程Post
找到here中的模型相同,唯一的区别是我的模型有一个指向电子邮件字段的额外外键在我的用户模型中。
email=request.user.email
不起作用。我正在考虑将电子邮件放在隐藏的字段中,但这对我来说似乎并不安全。
我使用的方法实际上与Django Channels教程here consumers.py
中的方法相同。一切正常,但我无法进入数据库中的其他字段进行发布。
def save_post(message, slug, request):
"""
Saves vew post to the database.
"""
post = json.loads(message['text'])['post']
email = request.user.email
feed = Feed.objects.get(slug=slug)
Postmie.objects.create(feed=feed, body=post email_id=email)
Postmie模特:
@python_2_unicode_compatible
class Postmie(models.Model):
# Link back to the main blog.
feed = models.ForeignKey(Feed, related_name="postmie")
email = models.ForeignKey(Usermie,
to_field="email",
related_name="postmie_email", max_length=50)
subject = models.CharField(max_length=50)
classs = models.CharField(max_length=50, null=True, blank=True)
subclass = models.CharField(max_length=50, null=True, blank=True)
title = models.CharField(max_length=60, null=True, blank=True)
body = models.TextField()
date_created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
def __str__(self):
return "#%i: %s" % (self.id, self.body_intro())
def post_email(self):
return self.email
def post_subject(self):
return self.subject
def post_datetime(self):
return self.datetime
def get_absolute_url(self):
"""
Returns the URL to view the liveblog.
"""
return "/feed/%s/" % self.slug
def body_intro(self):
"""
Short first part of the body to show in the admin or other compressed
views to give you some idea of what this is.
"""
return self.body[:50]
def html_body(self):
"""
Returns the rendered HTML body to show to browsers.
You could change this method to instead render using RST/Markdown,
or make it pass through HTML directly (but marked safe).
"""
return linebreaks_filter(self.body)
def send_notification(self):
"""
Sends a notification to everyone in our Liveblog's group with our
content.
"""
# Make the payload of the notification. We'll JSONify this, so it has
# to be simple types, which is why we handle the datetime here.
notification = {
"id": self.id,
"html": self.html_body(),
"date_created": self.date_created.strftime("%a %d %b %Y %H:%M"),
}
# Encode and send that message to the whole channels Group for our
# feed. Note how you can send to a channel or Group from any part
# of Django, not just inside a consumer.
Group(self.feed.group_name).send({
# WebSocket text frame, with JSON content
"text": json.dumps(notification),
})
def save(self, *args, **kwargs):
"""
Hooking send_notification into the save of the object as I'm not
the biggest fan of signals.
"""
result = super(Postmie, self).save(*args, **kwargs)
self.send_notification()
return result
答案 0 :(得分:0)
假设Usermie是您的用户模型。这意味着您在settings.py中有AUTH_USER_MODEL ='yourapp.Usermie'
如果你没有使用 to_field ,你可以这样做,
我认为您需要执行以下操作
Postmie.objects.create(feed=feed, body=post email=request.user)
或者你可以做到
Postmie.objects.create(feed=feed, body=post email_id=request.user.id)
您应该知道,每个外键通常都在数据库中表示,并带有附加_id的字段的名称。这就是Django如何放置外键。通常你应该直接使用Django的ORM。
如果您使用 to_field :仅限Django> 1.10 强>
根据documentation,电子邮件应该是唯一的。
如果在创建Postmie后更改了to_field。请确保列中的所有值都具有新的相应值。