как использовать поля возвращенных объектов json.
[{"question":"where is Kashmir ?","questionId":4416819},{"question":"kashmir my home","questionId":7785733}]
я делаю что-то подобное, но ничего не получается
$('#w-input-search').autocomplete({
serviceUrl: "/KashmirConnect/autocomplete",
paramName: "tagName",
delimiter: ",",
transformResult: function(response) {
return {
//must convert json to javascript object before process
suggestions: $.map($.parseJSON(response), function(object) {
return {
value: object.question,
data: object.questionId
};
})
};
}
});