在AngularJS中,设置此行class ExampleView(generic.ListView):
template_name = 'ppm/ppm.html'
def get(self, request):
manager = request.GET.get('manager', None)
if manager:
profiles_set = EmployeeProfile.objects.filter(manager=manager)
else:
profiles_set = EmployeeProfile.objects.all()
context = {
'profiles_set': profiles_set,
'title': 'Employee Profiles'
}
return render(request, self.template_name, context)
会给出=> 02:34(2小时34分钟)我希望输出为' 2H 34M'而不是02:34格式。如何在占位符中自定义时间格式?
' movie.duration',当然来自电影中的ng-repeat,ng-repeat ="电影",btw
我是AngularJS的新手,非常感谢您的帮助!
提前致谢!
答案 0 :(得分:1)
您可以在日期格式规则中添加其他字符或字符串:
{{ movie.duration | secondsToHHMM | date: "HH'H' mm'M'" }}