【发布时间】:2020-11-06 09:41:05
【问题描述】:
我已经使用 postgresql 在我的 django 应用程序中实现了全文搜索。但是,当我按下搜索按钮时,出现错误:
ProgrammingError at /blog/search/
function similarity(character varying, unknown) does not exist
LINE 1: SELECT COUNT(*) FROM (SELECT SIMILARITY("blog_post"."title",...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
我不知道错误在哪里,所以如果您需要任何文件,我会编辑这个问题。 请帮帮我
【问题讨论】:
-
这可能会有所帮助。 stackoverflow.com/questions/2254999/…
-
这不使用 django。我正在为我的应用程序使用 django
-
您应该在问题中添加更多调试细节!!!
标签: django postgresql