私はこのテーブルの各行の別のテーブルからフィールドを取る必要があるので、私はこのようなコードを書いているので、web2pyのビューからデータベーステーブルをクエリしようとしています:ビューからデータベースへのクエリ
{{for recipe in rows:}}
<div class="well">
<table>
<tr>
<td>
<div style="text-align:center">
<img width="200px"
src="{{=URL('download', args=db(db.uploads.recipe_id==recipe.id).select().first().up_file)}}" />
</div>
</td>
<td><button>
-
</button></td><td><span class='votes'>{{=recipe.votes}}</span></td><td><button>
+
</button><td><strong>{{=A("comments",_href=URL('view_posts',args=recipe.id))}},{{=recipe.name}}</strong></td></td></tr>
</table>
</div>
{{pass}}
でも、ビューからデータベースにクエリを実行できるかどうかは疑問です。 コントローラから同じものをクエリしてビューに戻すにはどうすればよいですか? これは、愚かな間違いかもしれませんが、申し訳ありません私は