xiewenya/django-aliyun-oss2-storage

‘/’被编码成‘%2F’

gexingavin opened this issue · 7 comments

{% static 'app/bootstrap/css/bootstrap.min.css'%} 被解析成http://xxxxxxx.oss-cn-hangzhou.aliyuncs.com/static%2Fapp%2Fbootstrap%2Fcss%2Fbootstrap.min.css
如果bootstrap.min.css包含相对路径的图片,那么就会出现问题,请问这个情况如何解决?
期望解析成http://xxxxxxx.oss-cn-hangzhou.aliyuncs.com/static/app/bootstrap/css/bootstrap.min.css

你好,这是url encode之后的结果,不影响访问。如果你需要/形式,可以条用url decode 解码。

例如:background-image: url(../../wmd-buttons.png);

这个问题出现在admin的第三方库中,比如grappelli,pagedown等,不容易自己url decode。

这个问题我之前没遇到过,你有什么建议吗?

我暂时修改你的源码,在url函数中做一次字符替换,临时解决项目的问题。
感觉这个方法不是太nice。

同样遇到了这样的问题。我在template中使用了{% static "css/bootstrap.min.css" %},但是编码结果中,/被编码为 %2F,导致oss 404.