Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
controllers/default.py 内
def test(): return dict(test=db().select(db.tbl_profile.name))
test.html に {{=test}} がありますが、次のように返されます。
tbl_card.name Johnny Apples...
table.fieldの名前や不完全な名前(...で切り取られたもの)ではなく、完全な名前をhtmlに表示したいだけです。
db().select(db.tablename.fieldname) だけですべての行を表示できます。切り捨ての問題を処理するには、SQLTABLE() を使用し、truncate を None に設定します。