Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当type声明为string时,Elasticsearch 6.0 将显示此错误。
type
string
"name" => [ "type" => "string", "analyzer" => "ik_max_word" ]
Elasticsearch 已删除该string类型,现在使用text. 所以你的代码应该是这样的
text
"name" => [ "type" => "text", "analyzer" => "ik_max_word" ]
我正在尝试使用 jquery 来检测特定表(即“grid1”)中的复选框更改。
(FWIW - 该表是一个 jqgrid)
但是,我使用的“选择器”语句似乎没有按我预期的方式工作。
它不是检测特定表格(即“grid1”)中的复选框更改,而是检测/响应整个文档中的更改 - 包括“grid2”。
我的选