본문 바로가기

개발/Front-end

[React.js/Spring Boot]

App.js 

function httpRequestTest(){
return fetch('ip:port/api')
.then((response) => response.json())
.then((responseJson) => {
alert(responseJson.test);
return responseJson.test;
})
.catch((error) => {
alert(error);
console.error(error);
});
}


@GetMapping("/api")
	public Map<string, string> api() {
		Map<string, string> data=new HashMap<>();
		data.put("test", "value");
		return data;
}



localhost 통신 시, localhost나 127.0.0.1 이 아닌 IPv4로 작성해야 함