ajax向后台传递json数据,并在后台接收

12 篇文章 0 订阅
<script>


    function toupiaoClick() {

        var count = $("input[type='checkbox']:checked").length;
        if (count <= 2) {
            alert("请至少投三个人");
        }
        else {
            var ids = [];
            $("input[type='checkbox']:checked").each(function () {
                ids.push($(this).val());
            })
            $.post("/User.ashx", { AjaxName: 'toupiao', userId: '<%=Session["userId"]%>', "ids": JSON.stringify(ids) }, function (msg) {
                if (msg == "OK") {
                    alert("测评成功,学校老师会尽快与你取得联系!");
                    location.reload();
                }
                else {
                    alert(msg);
                }
            })
        }

    }




</script>

前台利用json.stringify()将javascript值转换为JSON字符串

JSON.stringify()用于将 JavaScript 值转换为 JSON 字符串。

 

<%@ WebHandler Language="C#" Class="User" %>

using System;
using System.Web;
using DAL;
using System.Data;
using System.Data.SqlClient;
using System.Web.SessionState;//注意引用
using System.Web.Script.Serialization;//注意引用
using Model;
public class User : IHttpHandler,IRequiresSessionState {//注意要实现 IIRequiresSessionState接口
    
    public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "text/plain";
        HttpRequest requset = context.Request;
        string Str_AjaxName = requset["AjaxName"];
        if (Str_AjaxName == "toupiao")
        {
            string UserId = requset["userId"];

            var ids = requset["ids"];
            JavaScriptSerializer js = new JavaScriptSerializer();
            string[] str = js.Deserialize(ids, typeof(string[])) as string[];

            voteDal dal = new voteDal();
            try
            {
                for (int i = 0; i < str.Length; i++)
                {


                    //[2]封装对象
                    voteDetail objvoteDetail = new voteDetail()
                    {
                        VoterUserId = UserId,
                        VoteeUserId = str[i]
                    };
                    //[3]提交数据库保存对象

                    dal.AddVote(objvoteDetail);
                }
                context.Response.Write("投票成功");
            }
            catch (Exception ex)
            {
                context.Response.Write(ex.Message);
            }
            
            


        }
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值