如何在ng-repeat过滤器中传递HoDjango views.py上下文数据变量

时间:2014-12-19 07:36:50

标签: javascript python django angularjs

我正在尝试在角度ng-repeat中使用过滤器,其中 selectedUserId 是context_dict变量。 我的角度曲线是 { - }

我的view.py - 从网址

获取user_id

def profile(request, user_id): context = RequestContext(request) context_dict = {} context_dict['selectedUserId'] = user_id return render_to_response('rango/profile.html', context_dict, context)

我的重复

< div data-ng-repeat =“profile in profiles | filter:{userId: selectedUserId }:true”>

    <h1>{{ selectedUserId }} Profile<h1>
    <h2>{- profile.userId -}</h2>

如何让我的 selectedUserId 进行渲染,我尝试了{% selectedUserId %},但这不起作用。

1 个答案:

答案 0 :(得分:0)

您已在h1标记中呈现{{selectedUserId}},因此在您的ng-repeat中您还应使用{{ selectedUserId }}

<div data-ng-repeat="profile in profiles | filter:{ userId: '{{ selectedUserId }}' }: true">