标签: python django django-forms
我正在使用model.forms从用户那里获取<input>数据。我也在为这些数据使用正则表达式。
<input>
例如
输入=明天
然后网址看起来像:
www.mysite.com/tomorrow /
问题:
当用户使用空格放置tomorrow holiday时,我会收到错误。
tomorrow holiday
我在views.py中尝试了.strip()以避免空格。它给出了错误。
views.py
答案 0 :(得分:1)
使用slugify格式化为有效的网址和文件命名。
slugified_input = slugify(<user-input>)