今天帮别人改个老项目,联调的时候发现ajax请求报415,后查了资料发现是请求参数类型与后台接收参数未对应,所以记录下:

添加指定contentType,同时将data参数转为json字符串即可,如下所示:

$.ajax({
            url: ' api/json',  //数据地址
            data: JSON.stringify({"username": username, "password": password}),
            type: "POST",  //请求方式
            dataType: "json",
            contentType: "application/json;charset=UTF-8",
            success: function (data) {
                    if (data.errcode == 0) {
                        // console.log(111)
                        window.location.href = "http://localhost:1234/home.html";
                    } else {
                        showErr(data.errmsg);
                        return false;
                    }
            }
        })