文本字段的 permalink_fu:如何将 blob 转换为字符串输出?
如果我在文本字段上使用 permalink_fu 我会得到这个生成的permalink
:
http://localhost:3000/243webb4ee4ff2227230b4232438591810c35d3f
我认为
http://localhost:3000/where-is-my-lost-cat
这是因为text
字段成为数据库中的blob
并且permalink_fu
只知道如何操作字符串
字段。
如何将其转换为可读的 string
版本?
(无需将数据库类型从 text
更改为 string)
If I use permalink_fu on a text field I get this for the resulting permalink
:
http://localhost:3000/243webb4ee4ff2227230b4232438591810c35d3f
instead of
http://localhost:3000/where-is-my-lost-cat
I assume this is because the text
field becomes a blob
in the database and permalink_fu
only knows how to operate on string
fields.
How could I convert this to a readable string
version?
(without changing the database type from text
to string
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在本地注释掉这些行版本。查看异常是什么,并追踪到您的问题。
Try commenting out these lines in your local version. See what the exception is, and trace that to your issue.