我创建了一个具有 CommaSeparatedIntegerField 的模型
模型.py
class ForumPosts(models.Model):
....
path = models.CommaSeparatedIntegerField(blank=True,max_length=50)
...
我想使用这个模型并将我的视图定义如下 views.py
def create_forum_post(request, ..):
...
forumpost.path.append(forumpost_id)
...
我遇到了一种情况,我必须将 forumpost_id 附加到定义为 CommaSeperatedIntegerField 的路径中,它是一个整数。调试时出现错误
'unicode' 对象没有属性 'append'。
我认为这可能是由于缺少逗号我尝试了相同代码的许多变体但无法将 forumpost_id 添加到路径。提前致谢