django views重定向到带参数的url

当一个函数进行完成后需要重定向到一个带参数的url

URL

path('peopleapply/<int:jobid>/',second_views.peopleapply,name='peopleapply'),
 
函数
def peopleapply(request,jobid):
      略
 
调用
return redirect('peopleapply',jobid = people.jbnum_id)   
 
peopleapply 为函数再url中的name
jobid 为需要的参数名称
posted @ 2020-03-05 13:37  shance-丁多斌  阅读(2898)  评论(0编辑  收藏  举报