addIndex() 方法 public void addIndex(string $field, string $text) $field string 文本所属的字段名称 $text string 文本内容 源码: sdk/php/lib/XSDocument.class.php#L256 (显示) public function addIndex($field, $text){ $field = strval($field); if (!is_a...
...on processDoc($doc); 索引文档处理函数 在此通过 XSDocument::addIndex 或 XSDocument::addTerm 做索引相关调整
index 为 none 则 tokenizer 的值就无意义了... 如果 index 为其它,而 tokenizer 为 none,则您还可以调用 XSDocument::AddIndex 或 AddTerm 添加索引词。
你可以 XSDocument::addIndex 添加索引内容到某个字段 这样搜索结果显示的是“名称A”,但搜索“名称B”一样可以检索到“名称A”
...on processDoc($doc); 索引文档处理函数 在此通过 XSDocument::addIndex 或 XSDocument::addTerm 做索引相关调整
...法 __get XSDocument __set() 魔术方法 __set XSDocument addIndex() 给字段增加索引文本 (仅限索引文档) XSDocument addTerm() 给字段增加索引词 (仅限索引文档) XSDocument afterSubmit() 重写接口, 在文档成功提交到索引服务器后...
...非数据的字段值 // 用法与 XSDocument::addTerm() 和 XSDocument::addIndex() 等同 // 通常在 ActiveRecord::beforeSave() 中做这些操作 $model->addTerm('subject', 'hi'); $model->addIndex('subject', '你好,世界'); // 如需删除数据则可直接 $model->delete(); ``` 如需要...