CommaSeparatedIntegerField を持つモデルを作成しました
models.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)
...
CommaSeperatedIntegerField として定義されたパスに整数である forumpost_id を追加しなければならない状況に遭遇しました。デバッグ中にエラーが発生しました
「unicode」オブジェクトには属性「append」がありません。
カンマがないために、同じコードの多くのバリエーションを試しましたが、forumpost_id をパスに追加できなかったことが原因である可能性があると思います。前もって感謝します