Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Portfolio
- 개발자
- 개발
- C
- javascript
- mariadb
- techEmpower
- MySQL
- H2O
- php
- 한글
- NGINX
- 구글
- 자바
- C lanuage
- kakao
- java
- it
- centOS7
- 프래그먼트
- 컴퓨터과학총론
- android
- ubuntu
- 해석
- server
- 안드로이드
- caddy
- 번역
- error
- unity
Archives
- Today
- Total
개발모음집
fetch query 보내는 법 본문
let params = {
"param1": "value1",
"param2": "value2"
};
let query = Object.keys(params)
.map(k => encodeURIComponent(k) + '=' + encodeURIComponent(params[k]))
.join('&');
let url = 'https://example.com/search?' + query;
fetch(url)
.then(data => data.text())
.then((text) => {
console.log('request succeeded with JSON response', text)
}).catch(function (error) {
console.log('request failed', error)
});
출처 : https://stackoverflow.com/questions/35038857/setting-query-string-using-fetch-get-request
'client' 카테고리의 다른 글
webstorm에서 특정 js파일만 dtd 파일로 인식하는 문제 해결방법 (0) | 2020.07.10 |
---|---|
자원이 MIME 타입(“text/html”)이 일치하지 않아서 (X-Content-Type-Options: nosniff) 차단되었습니다. (0) | 2020.07.09 |
eslint rule, arrow function 허용하기 (0) | 2020.07.03 |
d3.js responsive chart 하는 법 (0) | 2020.07.02 |
javascript foreach, map, reduce (0) | 2020.07.01 |