第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

當(dāng)站點(diǎn)發(fā)送但不通過郵遞員發(fā)送時(shí),Spring Boot 會(huì)拒絕正文

當(dāng)站點(diǎn)發(fā)送但不通過郵遞員發(fā)送時(shí),Spring Boot 會(huì)拒絕正文

人到中年有點(diǎn)甜 2023-09-27 16:58:41
我正在使用 Spring Boot,但發(fā)生了一些奇怪的事情。我想向我的 springboot 服務(wù)器發(fā)出發(fā)布請(qǐng)求,當(dāng)我通過郵遞員執(zhí)行此操作時(shí)我成功,但當(dāng)我通過我的網(wǎng)站執(zhí)行此操作時(shí)失敗。我嘗試將其更改為不同的 HTTP 請(qǐng)求和數(shù)據(jù)模型,但出現(xiàn)相同的錯(cuò)誤。我送來的尸體和我親眼所見、測(cè)試過的似乎并沒有什么不同。錯(cuò)誤堆棧跟蹤位于 Web 請(qǐng)求中(一直向下)。我的控制器代碼    @CrossOrigin(maxAge = 3600)    @RequestMapping(value = "/auth", method = RequestMethod.POST)    @ResponseBodypublic ResponseEntity<?> authenticate(@RequestBody Map<String, String> body) {    System.out.println(body);    ResponseModel responseModel;    ProfileResource login = new ProfileResource();    login.setUsername(body.get("Username"));    login.setPassword(body.get("Password"));    // other code..    responseModel.setData(login);    return new ResponseEntity<>(responseModel, HttpStatus.ACCEPTED);}我的JS代碼:$(document).ready(function() {$("#LoginButtonID").click(function(){    if($('#LoginButtonID').is(':visible')) {        var link  = "http://localhost:9024/login/auth";        var body = "{"+            "\"Username\":\""+document.getElementById("UserNameID").value+"\", " +            "\"Password\":\""+document.getElementById("PasswordID").value+"\"" +            "}";        console.log(body);        sendRequest(link,'POST',body);        console.log(data)        if(data.response.toString()===("valid and successful")){            localStorage.setItem("username",document.getElementById("UserNameID").value);            window.location.href = "../html/UserPages/Welcome.html";        }else if(data.response.toString()===("failed to authenticate")){            alert("failed to login");        }    }})});
查看完整描述

2 回答

?
汪汪一只貓

TA貢獻(xiàn)1898條經(jīng)驗(yàn) 獲得超8個(gè)贊

查看您的響應(yīng) JSON 是否包含該response字段。


根據(jù)日志,收到的響應(yīng)是{"Username":"a", "Password":"a"}在您正在執(zhí)行的 JS 代碼中data.response.toString(),因?yàn)轫憫?yīng)未定義。你收到Uncaught TypeError: Cannot read property 'response' of undefined錯(cuò)誤了。


我嘗試了以下代碼,它在我的系統(tǒng)上運(yùn)行:


$(document).ready(function() {

    $("#LoginButtonID").click(function(){

            var link  = "http://localhost:9024/login/auth";

            var body = "{"+

                "\"Username\":\""+document.getElementById("UserNameID").value+"\", " +

                "\"Password\":\""+document.getElementById("PasswordID").value+"\"" +

                "}";

            sendRequest(link,'POST',body);


            if(data.response.toString()===("valid and successful")){

                localStorage.setItem("username",document.getElementById("UserNameID").value);

                alert("done!")

            }else if(data.response.toString()===("failed to authenticate")){

                alert("failed to login");

            }

    })

});


function sendRequest(link, type, body) {

    var xhr = new XMLHttpRequest();

    xhr.open(type, link, false);

    xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');


    xhr.onreadystatechange = function () {

        if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 202 ) {

            data = JSON.parse(xhr.responseText);

        }else if(xhr.readyState == XMLHttpRequest.DONE && xhr.status == 401 ){

            data = JSON.parse(xhr.responseText);            }

    }

    xhr.send(body);

}

控制器代碼:


@CrossOrigin(maxAge = 3600)

@PostMapping("auth")

@ResponseBody

public ResponseEntity<?> authenticate(@RequestBody Map<String, String> body) {

    // sending some response for the sake of testing

    body.put ("response","valid and successful");

    return new ResponseEntity<>(body, HttpStatus.ACCEPTED);

}


查看完整回答
反對(duì) 回復(fù) 2023-09-27
?
叮當(dāng)貓咪

TA貢獻(xiàn)1776條經(jīng)驗(yàn) 獲得超12個(gè)贊

您需要使用異步請(qǐng)求。您已經(jīng)在使用 jquery,它在$.ajax()中提供了此功能,無需使用 javascript 的內(nèi)置 XMLHttpRequest。



查看完整回答
反對(duì) 回復(fù) 2023-09-27
  • 2 回答
  • 0 關(guān)注
  • 126 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)