在 Django 中验证 slug
我猜这将涉及正则表达式或其他东西,但我会尝试一下。 目前,用户可以通过在标题字段中输入类似于 £$(*£$(£@$&£($
) 的内容来破坏网站,该内容会使用 Django 转换为 slug slugify
。
因为这些字符都无法转换,所以我的问题是,我应该在表单验证方法中添加什么来引发 forms.ValidationError
。用户使用这样的标题?
谢谢。
I'm guessing this is going to involve regexp or something, but I'll give it a shot. At the minute, a user can break a website by typing something similar to £$(*£$(£@$&£($
in the title field, which is converted into a slug using Django slugify
.
Because none of these characters can be converted, Django returns an error. My question is, what should I put in the form validation method to raise a forms.ValidationError
when the user uses a title like this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题已有五年历史了,所以在更新我的问题时,我应该解释一下,我至少是在向过去点头,其中某些功能可能不存在。
如今,处理表单中的 slug 最简单的方法就是使用 django.models.SlugField。 它会为您验证自身并暗示该字段是一个索引。
如果您不在模型上使用它,您仍然可以挂钩 SlugField 使用的同一验证器:
如果您只想进行幕后检查或编写自己的验证器,您可以使用类似的技术来引入Django 对有效 slug 的定义。 这只是上面 validate_slug 使用的编译后的正则表达式:
我无法想象它会改变,但是通过将自己锁定在 Django 的 slug 想法上,如果 Django 有一天确实改变了,你将确保一致性。
This question is half a decade old so in updating my question I should explain that I'm at least nodding to the past where some features might not have existed.
The easiest way to handle slugs in forms these days is to just use
django.models.SlugField
. It will validate itself for you and imply that this field is an index.If you're not using this on a model, you can still hook in the same validator that SlugField uses:
If you just want to do behind-the-scenes checking or write your own validator, you can use a similar technique to pull in Django's definition of a valid slug. It's just the compiled regex that validate_slug above uses:
I can't imagine it will change, but by locking yourself to Django's idea of a slug, you'll ensure consistency if Django does change one day.