我设法利用我的当地汽车提取数据(http://mysite.dev/swan/autocomplete)。 展示了json数据。
但是,当我使用同一单元时(现称次:)。 由于安装了不同的自动装置,因此无法提取数据。 没有显示json数据。
如果与交叉领域问题有关,或我可能不知道的任何原因,你是否有什么想法?
背书:
/**
* Callback to allow autocomplete of organisation profile text fields.
*/
function swan_autocomplete($string) {
$matches = array();
$result = db_query("SELECT nid, title FROM {node} WHERE status = 1 AND type= organisation AND title LIKE LOWER ( %s%% )", $string, 0, 40);
while ($obj = db_fetch_object($result)) {
$title = check_plain($obj->title);
//$matches[$obj->nid] = $title;
$matches[$title] = $title;
}
//drupal_json($matches); // fails at safari for first timers
print drupal_to_js($matches);
exit();
}
任何方面都会受到高度赞赏。
增 编