使用装置时如何访问 django admin 的 slugs 音译器?
在管理中,如果您输入 slug,则通过 JS 应用两件事:
- 该字符串对 slug 友好
- 如果语言不是英语,则该字符串将被音译,因此例如西里尔语俄语文本将转换为音译俄语(在英语)
我基本上插入了几千行,我需要访问它。 django 是否提供了该音译器的非 js 服务器端版本,我可以通过某种方式访问它来进行插入?
In the admin, if you enter in a slug two things are applied through JS:
- The string is made slug-friendly
- The string is transliterated if the language is not English, so for example Cyrillic Russian text gets converted into Transliterated Russian ( typed out in English )
I'm basically inserting a couple thousand rows and I need to access this. Does django provide a non-js server-side version of this transliterator which I can access to somehow do the insertion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来我必须移植 usr/lib/pymodules/python2.5/django/contrib/admin/media/js/urlify.js 代码,除非我能找到一种以编程方式加载所有代码的方法客户端上的文章并自动进行自我标记。
Looks like I have to port over the
usr/lib/pymodules/python2.5/django/contrib/admin/media/js/urlify.js
code unless I can figure out a way to programmatically load all articles on the client side and slugify themselves automatically.