• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

asp.net mvc 从后台向前台传送数组或JSON数据

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

比如传送这样的数组 

 { { "build", "http://www.baidu.com" }, 

{ "analyse", "http://www.sohu.com" }, 

{ "openbook", "http://www.163.com" }},

可以把这样的数组转换成JSON数据,然后传递到前台.

后台代码:

 1 namespace myapp.Controllers
 2 {
 3     public class HomeController : Controller
 4     {
 5         public ActionResult Index()
 6         {
 7             return View();
 8         }
 9 
10         public ActionResult GetData()
11         {
12             string mystring = "[{ \"第一项\": \"build\", \"第二项\":\"http://www.baidu.com\" },{ \"第一项\": \"Brett\", \"第二项\":\"http://www.sohu.com\" },{ \"第一项\": \"openbook\", \"第二项\":\"http://www.163.com\" }]";
13 
14             return Json(mystring, JsonRequestBehavior.AllowGet);
15         }
16     }
17 }

Index.cshtml  里面:

 1 <script type="text/javascript" src="~/myjquery/jquery.min.js"></script>
 2 <script type="text/javascript">        
 3         function hhh() {
 4             $.ajax({
 5                 url: "/myapp/Home/GetData",
 6                 type: "GET",
 7                 async: false,
 8                 dataType: "json",
 9                 error: function () { alert("err"); },
10                 success: function (data) {
11                     var json = JSON.parse(data);
12                     $.each(json, function (idx, obj) {
13                         alert(obj.第一项);
14                         alert(obj.第二项);
15                     });
16                 }
17             });
18         }
19 </script>

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[翻译]ASP.NET MVC Tip #39 – 在ASP.NET MVC中使用分布式缓存发布时间:2022-07-10
下一篇:
ASP.NETMVC程序中动态修改form的Action值发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap