我怎样才能访问到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 的键