教义 可使用非 ASCII 字符进行搜索
我有土耳其语文本:“selam günaydın”。教义 searchable 将其转换为表中的关键字: -塞拉姆 -guenaydin
所以“guenaydin”作为关键字“günaydın”保存在表中,所以当 有人在搜索“günaydın”中写道,他什么也没得到 - 我能做什么 做?
I have text in Turkish language: "selam günaydın". Doctrine
searchable converts it to keywords in table:
-selam
-guenaydin
So "guenaydin" was saved in table as keyword "günaydın" so when
somebody writes in search "günaydın" he gets nothing - what can I
do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案:
您应该首先使用Doctrine_Search_Analyzer_Standard类的analyze()方法,以便将传入的搜索字符串转换为索引表的格式。
Solution:
You should first use the analyze() method of the Doctrine_Search_Analyzer_Standard class, in order to convert the incoming search string to the format of the index table.