from django.forms import ModelForm # 表單類的基類 from app_1.models import Moment # 定義表單類 class MomentForm(ModelForm): class Meta: ...
確定! 回上一頁