使用jquery获取json对象
$.getJSON("<%: Url.Action("myUrl", "cont") %>/", function(data) {
var items = [];
$.each(data, function(key, val) {
items.push(val);
});
});
[Authorize]
[OutputCache(Duration = 0, VaryByParam = "None")]
public JsonResult myUrl()
{
var list = _repository.GetAll();
var items = list.Select(c => c.Name).ToList();
return Json(items, JsonRequestBehavior.AllowGet);
}
我在服务器端创建一个列表(字符串名称列表)并返回一个 JsonResult。我正在尝试使用 jquery 获取客户端的列表,以便我可以检查它是否包含特定项目。以上似乎不起作用...有什么建议吗?
$.getJSON("<%: Url.Action("myUrl", "cont") %>/", function(data) {
var items = [];
$.each(data, function(key, val) {
items.push(val);
});
});
[Authorize]
[OutputCache(Duration = 0, VaryByParam = "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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须解析 JSON:
You have to parse the JSON: