jQuery UI自动完成jsonp映射响应

时间:2012-04-16 10:09:54

标签: javascript jquery ajax jquery-ui jsonp

我正在尝试使用jqueryUI中的自动完成功能。当我提醒响应时,我得到以下信息:([ { "id": "test", "label": "test", "value": "test" } ]);

但是当我尝试映射结果时,下拉结果为空。这是我的代码:

<script>
$(function() {
    function log( message ) {
        $( "<div/>" ).text( message ).prependTo( "#log" );
        $( "#log" ).scrollTop( 0 );
    }

    $( "#city" ).autocomplete({
        source: function( request, response ) {
            $.ajax({
                url: "http://localhost/jQuery/development-bundle/demos/autocomplete/search3.php",
                jsonp: "jsonp_callback",
                data: {
                    featureClass: "P",
                    style: "full",
                    maxRows: 12,
                    name_startsWith: request.term
                },
                success: function( data ) {
                    alert(data);
                    response( $.map( data, function( item ) {
                        return {
                            label: item.label,
                            value: item.value
                        }
                    }));
                }
            });
        },
        minLength: 2,
        select: function( event, ui ) {
            log( ui.item ?
                "Selected: " + ui.item.label :
                "Nothing selected, input was " + this.value);
        },
        open: function() {
            $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
        },
        close: function() {
            $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
        }
    });
});
</script>

我的服务器端脚本使用以下代码:

echo $_GET['jsonp_callback'] . '(' . $data . ');';

非常感谢

1 个答案:

答案 0 :(得分:1)

使用此行

url: "http://ws.geonames.org/searchJSON?jsonp_callback=?",

和数据类型

dataType: 'jsonp',

而不是

url: "http://ws.geonames.org/searchJSON",