728x90
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<!-- json 변환 -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
JsonObject json = new JsonObject();
json.addProperty("url", "/fileupload/"+savedFileName);
json.addProperty("responseCode", "success");
json["url"] 이런식으로 값을 출력 할 수 있다.
success : function(data) {
var json = JSON.parse(data);
console.log("json" + json);
console.log("json[url]" + json["url"]);
console.log("json[responseCode]" + json["responseCode"]);
},
error : function(e) {
console.log(e);
}
결과 출력
json[object Object]
json[url]/fileupload/7e3ab3d4-b71b-4d59-9bba-a03c22e7824b.png
json[responseCode]success
'js' 카테고리의 다른 글
[bxSlider] <a> 태그 링크 이동 오류 해결 방법 (1) | 2022.03.07 |
---|---|
[JavaScript] FormData() key value 확인 하는 방법 (0) | 2022.02.21 |
[javaScript] .tif File 불러오기 (0) | 2022.02.15 |
[HTML] 마우스클릭, 드래그, 선택방지 막기 / 푸는 방법 (0) | 2022.01.26 |
[JavaScript] Location URL 정보 가져오기 (0) | 2022.01.18 |