게시글
질문&답변
AttributeError: type object 'Post' has no attribute 'object' 에러
해결했슴다! 감사해요
- 0
- 4
- 3.3K
질문&답변
AttributeError: type object 'Post' has no attribute 'object' 에러
views.py 입니다 from django.shortcuts import renderfrom .models import Post# Create your views here.def index(request): posts = Post.object.all() return render( request, 'blog/index.html', { 'posts': posts, } )
- 0
- 4
- 3.3K