zoukankan      html  css  js  c++  java
  • 原生ajax请求的步骤

    //第一步,创建XMLHttpRequest对象
    var xmlHttp = new XMLHttpRequest();
    function CommentAll() {
    //第二步,注册回调函数
    xmlHttp.onreadystatechange =callback1;
    //{
    // if (xmlHttp.readyState == 4)
    // if (xmlHttp.status == 200) {
    // var responseText = xmlHttp.responseText;

    // }
    //}
    //第三步,配置请求信息,open(),get
    //get请求下参数加在url后,.ashx?methodName = GetAllComment&str1=str1&str2=str2
    xmlHttp.open("post", "/ashx/myzhuye/Detail.ashx?methodName=GetAllComment", true);

    //post请求下需要配置请求头信息
    //xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

    //第四步,发送请求,post请求下,要传递的参数放这
    xmlHttp.send("methodName = GetAllComment&str1=str1&str2=str2");//"

    }
    //第五步,创建回调函数
    function callback1() {
    if (xmlHttp.readyState == 4)
    if (xmlHttp.status == 200) {
    //取得返回的数据
    var data = xmlHttp.responseText;
    //json字符串转为json格式
    data = eval(data);
    $.each(data,
    function(i, v) {
    alert(v);
    });
    }
    }

    //后台方法
    private void GetAllComment(HttpContext context)
    {

    //Params可以取得get与post方式传递过来的值。
    string methodName = context.Request.Params["methodName"];

    //QueryString只能取得get方式传递过来的值。
    string str1 = context.Request.Form["str1"];

    //取得httpRequest传来的值,包括get与post方式
    string str2 = context.Request["str2"];

    List<string> comments = new List<string>();

    comments.Add(methodName);

    comments.Add(str1);

    comments.Add(str2);


    //ajax接受的是json类型,需要把返回的数据转给json格式
    string commentsJson = new JavaScriptSerializer().Serialize(comments);
    context.Response.Write(commentsJson);
    }

  • 相关阅读:
    SQL的join使用图解
    归并排序的JAVA实现
    java 快速排序 时间复杂度 空间复杂度 稳定性
    哈希表(HashMap)分析及实现(JAVA)
    外部排序
    海量数据面试题整理
    《CSS3秘籍》第6、7章
    《CSS3秘籍》第3-5章
    《CSS3秘籍》第1、2章
    《HTML5与CSS3基础教程》第11、14-16、18章
  • 原文地址:https://www.cnblogs.com/mcll/p/11382992.html
Copyright © 2011-2022 走看看