真的不明白到底怎么回事,试了很多也找了很多方法,谢谢大家了。这个 planId 总是不能在 create 的时候显示出来,就算只剩下这一个字段也不显示
class CourseRuleCodeInstance(Document):
_id = LongField(primary_key=True)
planId = LongField(required=True)
type = IntField(default=1, choices=[1, 2])
title = StringField(required=True)
description = StringField(required=False)
priority = LongField(default=1)
templateId = LongField(required=False)
templateParams = DictField(required=False)
code = StringField(required=True)
status = IntField(default=1, choices=[0, 1, 2])
class CourseRuleCodeInstanceView(ModelView):
column_default_sort = ('_id', True)
column_searchable_list = ['title']
form_columns = (
'type',
'title',
'planId',
'description',
'priority',
'code',
'status',)
column_list = ['_id',
'planId',
'type',
'title',
'description',
'priority',
'code',
'status',
'dateCreated', ]
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.