也许我错过了一些荒唐的东西,我没有看到,但这是我第一个学习web2py的应用程序。 我无法在表格电影中输入数据,表格电影中包含与其他表格相关的字段。
列表已加载,但未在电影注册中注册。 根据代码和结果。
db.py
Movie = db.define_table('movies',
Field('title','string', label = 'Title'),
Field('date_release','integer', label = 'Date Release'),
Field('duraction','integer', label = 'Duraction'),
Field('category','string','list:reference categories', label = 'Category'),
Field('actor','list:reference actors', label = 'Actor'),
Field('director','list:reference directors', label = 'Diretor'),
)
Category = db.define_table('categories',
Field('title','string', label = 'Title'),
)
validators.py
Movie.title.requires = [IS_NOT_EMPTY(), IS_NOT_IN_DB(db, 'movies.title')]
Movie.category.requires = IS_IN_DB(db, 'categories.title')
Movie.director.requires = IS_IN_DB(db, 'directors.name')
Movie.actor.requires = IS_IN_DB(db, 'actors.name')
Movie.duraction.requires = IS_INT_IN_RANGE(0, 1000)
Category.title.requires = IS_NOT_EMPTY()
movie.py
def add():
form = SQLFORM(Movie)
if form.process().accepted:
response.flash = "Successful! New movie added!"
redirect(URL('add'))
elif form.errors:
response.flash = 'Error'
else:
response.flash = 'Form, set data'
return dict(form = form)
列表加载另一个表 - 确定:
列表项不在DB中记录:
答案 0 :(得分:0)
表单中显示的小部件基于您指定的IS_IN_DB
字段验证程序,编码方式存在三个问题。
首先,list:reference
字段(如标准reference
类型字段)存储它们引用的记录的记录ID - 它们不存储引用记录中其他字段的值。因此,IS_IN_DB
验证器的第二个参数应始终为ID字段(例如categories.id
)。
其次,尽管该字段将存储记录ID,但您希望表单窗口小部件显示每个记录的其他更具描述性的表示形式,因此您应指定"标签" IS_IN_DB
验证器的参数(例如label='%(title)s'
)。
第三,list:reference
字段允许多个选择,因此您必须设置"倍数" IS_IN_DB
验证者对True
的论证。这将导致表单中的多选小部件。
因此,生成的验证器应如下所示:
Movie.category.requires = IS_IN_DB(db, 'categories.id', label='%(title)s', multiple=True)
上面将允许选择多个db.categories
ID,但表单小部件将显示类别标题而不是实际ID。
现在,如果您在 使用上面的代码,根本不需要显式指定 您可能需要阅读 另外,您可以考虑在表定义中指定字段验证器(通过db.movies
表之前定义引用的表并为每个表指定format
参数,则可以更加轻松地完成上述所有操作: / p>
Category = db.define_table('categories',
Field('title','string', label = 'Title'),
format='%(title)s')
Movie = db.define_table('movies',
...,
Field('category', 'list:reference categories', label = 'Category'),
...)
IS_IN_DB
验证器,因为db.movies.category
字段将自动获得与上面指定的默认验证器完全相同的默认验证器({{1 format
表的属性用作db.categories
参数。)list:reference
fields和IS_IN_DB
validator上的文档。label
的{{1}}参数),因为这更简洁,将所有与架构相关的详细信息保存在一个位置,并且无需在每次请求时读取和执行其他模型文件。