将filepath作为getURL参数Django2发送

时间:2018-01-15 11:54:48

标签: python django

我想将文件网址作为get参数发送:

$.get("/django_route/"+ encodeURIComponent(fileUrl), function(res){
    console.log(res)
})

但看起来Django将我编码的URI组件解释为实际的URI ...

Django有可能发生这种事吗?

1 个答案:

答案 0 :(得分:1)

好吧,它将其解释为网址,因为您要在网址中发送它。你是否想要发送一个查询字符串?如果是这样,那就这样做:

 $.get("/django_route/?filepath="+ encodeURIComponent(fileUrl), ...