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로 작성해야 함
'개발 > Front-end' 카테고리의 다른 글
[React Native] react-native-navigation 화면넘기기 (0) | 2018.11.23 |
---|---|
[React Native] React Native Navigation 환경 구축하기 (WebStrorm, Window) (0) | 2018.11.23 |
[javascript] button disabled 변경 (0) | 2018.10.24 |
[JSP] 동적으로 시간표 작성하기 - jSP, Spring (0) | 2018.09.03 |
[Bootstrap] Grid System, Form Style (0) | 2018.07.19 |