0

我怎样才能访问到HashMap密钥JQuery?我想拥有自己在bootstraptypeahead中使用的密钥。

我正在使用 Gson 将 HashMap 解析为 Gson:

HashMap<String, String> source = new HashMap<String, String>();
put("key","value");

response.setContentType( "application/json" );
response.setCharacterEncoding( "UTF-8" );
response.getWriter().write( new Gson().toJson( source ) );

我预先输入的代码:

$('#textbox').typeahead({
    source: function(query, process){
        return $.get('URL', {query: query},
                      function(data){
              return process(data.key);
              },'json');
        },
    items: 10
});

return process(data);我想拥有它自己的 HashMap 的键

4

1 回答 1

0

为什么它很有可能。

just use JSON.stringfy(data.key);
于 2014-09-25T16:26:43.910 回答