get json object with jquery
$.getJSON("<%: Url.Action("myUrl", "cont") %>/", function(data) {
var items = [];
$.each(data, function(key, val) {
items.push(val);
});
});
[Authorize]
[OutputCache(Duration = 0, VaryByParam =开发者_C百科 "None")]
public JsonResult myUrl()
{
var list = _repository.GetAll();
var items = list.Select(c => c.Name).ToList();
return Json(items, JsonRequestBehavior.AllowGet);
}
I create a list on the server side (list of string names) and return a JsonResult. I'm trying to get the list on the client side using jquery so i can check if it contains a particular item. The above doesnt seem to work...any suggestions?
You have to parse the JSON:
$.get("<%: Url.Action("myUrl", "cont") %>/", function(data) {
var items = [];
data = $.parseJSON(data);
$.each(data, function(key, val) {
items.push(val);
});
});
精彩评论