0

我正在尝试使用 django 创建一个非常基本的聊天应用程序。我正在尝试为某人创建一个简单的函数来发布可能更新数组的消息?我不确定该怎么做。非常感谢您的帮助

from django.db import models
from django.contrib.auth.models import User

# Create your models here.

class Message(models.Model):
    text = models.CharField(max_length=250)
    date = models.DateTimeField(auto_now=True, blank=True)
    user = models.ForeignKey(User, related_name='chatuser', blank=True)

    class Meta:
        verbose_name_plural = "Messages"
        ordering = ['-date']

    def __unicode__(self):
        return self.text
4

1 回答 1

-1

可以在https://github.com/sivaa/django-sample-chat中找到使用 django 和 ajax 构建的基本聊天应用程序。克隆应用程序并检查其中给出的代码。

于 2013-03-20T12:01:05.720 回答