- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 urllib
中的 quote_plus
,它与它的表兄弟 unquote_plus
一起工作得很好,用于在空格之间添加加号,例如:The Cat Sat
变成了 The+Cat+Sat
,这很棒。然而现在的问题是,使用这个效果当我有 /description/id/34/the cat sat on
时路径会变成这样
%2Fdescription%2F274%2Fthe+cat+sat+on
我该怎么办。我真的想要空格的加号,但我在只替换加号的空格之间左右为难。在建立道路时是否有适当的治疗方法?我真的很想保留斜杠和加号。
Flask 模板 View :
<a href="{{animal.url|quote_plus}}">{{animal.title}}</a>
在代码.py中:
animal["url"] = "/description/"+str(animal["id"]) + "/" + animal["title"]
还有:
app.jinja_env.filters['quote_plus'] = lambda u: quote_plus(u)
最佳答案
当您调用 quote_plus 时,设置 safe='/',这就是您所要求的。
查看文档 https://docs.python.org/3/library/urllib.parse.html请注意,quote 有一个默认参数 safe='/'而 quote_plus 有一个默认的 safe=''
urllib.parse.quote(string, safe='/', encoding=None, errors=None)
urllib.parse.quote_plus(string, safe='', encoding=None, errors=None)
差异如下所示:
url = '/description/id/34/the cat sat on'
print 'quote: ', urllib.quote(url)
print 'quote_plus: ', urllib.quote_plus(url)
print 'quote_plus with safe set: ', urllib.quote_plus(url, safe='/')
输出
quote: /description/id/34/the%20cat%20sat%20on
quote_plus: %2Fdescription%2Fid%2F34%2Fthe+cat+sat+on
quote_plus with safe set: /description/id/34/the+cat+sat+on
关于python - 使用带斜杠的 python quote_plus,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33547976/
我有一个右下角倾斜的元素,我必须在其上放置一个盒子阴影。有时倾斜的 Angular 被徽章覆盖 - 我的问题不适用,如果是这样的话: 这是信息框及其边 Angular 的 (s)css 部分(还有更多
是否可以在纯 html/css 中创建类似下面的内容? 我想做这个响应式和全 (100%) 宽度(最大左 Angular 100 像素,右边最小 50 像素,类似的东西)。 最佳答案 您可以通过转换(
如何在 fabricjs 文本中为文本提供渐变或斜 Angular 效果?? http://fabricjs.com/fabric-intro-part-2/ 这里给出了形状和所有示例,我将其与文本绑
我用过: http://apps.eky.hk/css-triangle-generator/ 为彼此对 Angular 放置的两个不等边三 Angular 形生成 css: 左下三 Angular
我是一名优秀的程序员,十分优秀!