type 属性 public int $type; 字段类型
getAllFields() 方法 public XSFieldMeta[] getAllFields() {return} XSFieldMeta[] 源码: sdk/php/lib/XSFieldScheme.class.php#L117 (显示) public function getAllFields(){ return $this->_fields;} 获取项目所有字段结构设置
getIterator() 方法 public void getIterator() 源码: sdk/php/lib/XSFieldScheme.class.php#L189 (显示) public function getIterator(){ return new ArrayIterator($this->_fields);} IteratorAggregate 接口, 以支持 foreach 遍历访问所有字段
markResetScheme() 方法 public void markResetScheme() 源码: sdk/php/lib/XSSearch.class.php#L504 (显示) public function markResetScheme(){ $this->_resetScheme = true;} 标记字段方案重置
[quote='hightman' pid='432' dateline='1326431112'] 对于字段搜索,内部转换时会自动加上一些括号,所以可能超标了。 [/quote] 那只能缩短搜索语句了呀?有什么其他方案么?老是给你添麻烦,呵呵 ,抱歉那。
我索引的时候有个字段 type 0为新闻 1为产品 现在如何 where type=1这样的啊? $docs = $search->setQuery($skey)->addWeight('title', $skey)->search(); 这里不知道怎么写?