MVC中使用ajax和json传递数据简单示例

1.jquery中ajax的简单使用方法。

  传输数据与内容:
  传输数据时:json要解析。

    function GetValues() {
        $.ajax({ 
            url: "GetJson",//请求地址
            type: "Post",//请求方式:GET,Post
            datatype: "json",//传递数据的json
            timeout: 1000,
            success: AlertInfo  //回调函数 
        });
    }
 function AlertInfo(result) {
        alert(result.randfloat);
        alert(result.readarray);
    }

Controller中的方法,用this.Json(object data)

public ActionResult GetJson()
        {
            Random rand = new Random(DateTime.Now.Millisecond);
            return this.Json(new { randfloat=rand.NextDouble(),
                readarray=new int[]{rand.Next(),rand.Next(),rand.Next()}
            });
        }

2.  传输内容:传输html内容。

转载于:https://www.cnblogs.com/netlove/archive/2013/03/29/2988842.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值