这似乎对我有用:
def test():
fields = [db.tableA[field] for field in db.tableA.keys() \
if type(db.tableA[field]) == type(db.tableA.some_field)]
fields += [db.tableB[field] for field in db.tableB.keys() \
if type(db.tableB[field]) == type(db.tableB.some_field)]
ff = []
for field in fields:
ff.append(Field(field.name, field.type))
form = SQLFORM.factory(*ff, readonly=True)
return dict(form=form)
您可以添加 field.required、field.requires validtaors 等。此外,由于您使用的是 SQLFORM.factory,您应该能够验证它并进行更新/插入。只需确保您正在使用此方法构建的表单包含所有必要的信息来验证表单以进行更新——我相信您可以轻松地将它们添加到Field
上面的实例化中。
编辑:哦,是的,您需要获取相关记录的值,以根据记录 id 预填充表单(在定义表单之后)......还有......我刚刚意识到,而不是那些列表理解,您可以只使用 SQLFORM.factory 并提供两个表:
def test():
form = SQLFORM.factory(db.tableA, db.tableB, readonly=True)
record = ... (query for your record, probably based on an id in request.args(0))
for field in record.keys():
if (*test if this really is a field*):
form.vars[field] = record[field]
return dict(form=form)
由于我只为预填充提供了伪代码,因此需要进行一些调整......但请查看:http ://web2py.com/books/default/chapter/29/7#Pre-populating-the-form和SQLFORM/SQLFORM.factory 部分。