我想将文件网址作为get参数发送:
$.get("/django_route/"+ encodeURIComponent(fileUrl), function(res){
console.log(res)
})
但看起来Django将我编码的URI组件解释为实际的URI ...
Django有可能发生这种事吗?
答案 0 :(得分:1)
好吧,它将其解释为网址,因为您要在网址中发送它。你是否想要发送一个查询字符串?如果是这样,那就这样做:
$.get("/django_route/?filepath="+ encodeURIComponent(fileUrl), ...