排除flask-admin的创建/编辑表单中的特定字段

Cal*_*eng 4 flask flask-admin

我的模型中有一些字段,我特别想要从我的模型中排除ModelView.

参考https://flask-admin.readthedocs.org/en/latest/api/mod_model/,我尝试使用form_exclude_columns例如排除这些特定字段,例如

class UserView(ModelView):

    form_exclude_columns = ('created', 'modified')
Run Code Online (Sandbox Code Playgroud)

但这似乎不起作用.

如何在my createeditModelView页面中轻松排除这两个字段?

dir*_*irn 13

该属性应该命名form_excluded_columns.你忘记了'd'.

class UserView(ModelView):

    form_excluded_columns = ('created', 'modified')
Run Code Online (Sandbox Code Playgroud)