私は node.js に頭を悩ませ始めており、通常の MVC をどのように行うかを理解しようとしています。たとえば、データベースから 2 セットのレコードを取得し、それらを送信してテンプレートにレンダリングする Django ビューを次に示します。
def view(request):
things1 = ThingsOne.objects.all()
things2 = ThingsTwo.objects.all()
render_to_response('template.html, {'things1': things1, 'things2': things2})
同様の node.js 関数はどのように見えるでしょうか?