Hello World

ajax post 请求发送 json 字符串

    $.ajax({
        // 请求方式
        type:"post",
        // contentType 
        contentType:"application/json",
        // dataType
        dataType:"json",
        // url
        url:url,
        // 把JS的对象或数组序列化一个json 字符串
        data:JSON.stringify(data),
        // result 为请求的返回结果对象
        success:function (result) {
            if (200 == result.code){
                alert("启动成功");
            }else{
                alert("启动失败");
            }
        }
    });

 

posted @ 2018-12-12 16:12  小小忧愁米粒大  阅读(9435)  评论(0编辑  收藏  举报
瞅啥瞅,好好看书