1

如果这太基本了,我真的很抱歉,但我真的不知道该怎么做。

我正在使用这个 jquery 自动完成插件:http ://devthought.com/wp-content/projects/jquery/textboxlist/Demo/

编辑:这是我用于自动完成的 jquery 代码:

$(function() {
        var t = new $.TextboxList('#form_topick_tags', {unique: true, plugins: {autocomplete: {
                minLength: 2,
                queryRemote: true,
                remote: {url: 'autocomplete2.php'}
            }}});

该插件使用 PHP 进行自动完成,这是一个示例,它返回以下输出:“id, text, null (html 我不需要), some html"

$response = array();
            $names = array('Abraham Lincoln', 'Adolf Hitler', 'Agent Smith', 'Agnus', 'Etc');

            // make sure they're sorted alphabetically, for binary search tests
            sort($names);

            $search = isset($_REQUEST['search']) ? $_REQUEST['search'] : '';

            foreach ($names as $i => $name)
            {
                if (!preg_match("/^$search/i", $name)) continue;
                $filename = str_replace(' ', '', strtolower($name));
                $response[] = array($i, $name, null, '<img src="images/'. $filename . (file_exists('images/' . $filename . '.jpg') ? '.jpg' : '.png') .'" /> ' . $name);
            }

            header('Content-type: application/json');
            echo json_encode($response);

我需要一个类似的 PHP 来处理这个结果:http ://www.freebase.com/private/suggest?prefix=beatles&type_strict=any&category=object&all_types=false&start=0&limit=10&callback=

...成为“披头士” $search 值,并获得此输出:

guid,"name",null,"name<span>n:type name</span>"

因此,第一个结果将是:

0,"The Beatles",null,"The Beatles<span>Band</span>"

当然,我需要从那个 PHP 查询 freebase.com。我是说:

        +---------------+         +-----------+        +------------+
        |               |         |           |        |            |
        |  TextboxList  +-------->|   PHP     +------->|  Freebase  |
        |               |         |           |        |            |
        +---------------+         +-----------+        +------+-----+
                                                              |
             JSON                     JSON                    |
          TextboxList   <--------+  freebase       <----------+

这可能吗?谢谢!

4

1 回答 1

2

试试这个:

$response = array();

$search = isset($_REQUEST['search']) ? $_REQUEST['search'] : '';

$myJSON = file_get_contents('http://www.freebase.com/private/suggest?prefix=' . urlencode($search));

$musicObj = json_decode($myJSON); // Need to get $myJSON from somewhere like file_get_contents()

foreach ($musicObj->result as $item)
{
    $response[] = array($item->guid, $item->name, null, $item->name . '<span>'.$item->{'n:type'}->name.'</span>');
}

header('Content-type: application/json');
echo json_encode($response);

然后第一个 JSON 转义结果给出:

["#9202a8c04000641f800000000003ac10","The Beatles",null,"The Beatles<span>Band<\/span>"]

但尽管如此,您实际上根本不需要使用 PHP 来执行此操作。您可以通过 JavaScript 完成这一切,避免额外访问您的服务器。如果您callback向 freebase 提供参数,它可以创建 JSONP(它是使用您选择的函数名称包装在函数调用中的 JSON),您可以在 jQuery 中获取它,然后根据自己的喜好在 JavaScript 中进一步操作。但以上是根据您使用 PHP 的原始方法。

于 2011-06-15T05:07:39.350 回答