Fetch API를 사용하여 jQuery를 수행합니다.aax처럼post 데이터
4414 단어 JavaScript
총결산
URLSearchParams를 사용하시면 됩니다.
하면, 만약, 만약...
아래와 같이 발송hoge
과foo
.
jquery.js$.ajax({
url: '/api/tasks',
type: 'POST',
data: {hoge: 'fuga', foo: 'bar'},
});
Fetch API 시
URLSearchParams 사용
아래와 같이 바디에 URLSearchParams
를 넣으면 적당히 설정Content-Type
fetch1.jslet params = new URLSearchParams()
params.set('hoge', 'fuga')
params.set('foo', 'bar')
fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
body: params,
})
문자열로 직접 쓰기
헤더를 설정해야 하니 주의하십시오fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
body: 'hoge=fuga&foo=bar',
})
Reference
이 문제에 관하여(Fetch API를 사용하여 jQuery를 수행합니다.aax처럼post 데이터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/sasaki_/items/3c6600180298f03f3fb1
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
아래와 같이 발송
hoge
과foo
.jquery.js
$.ajax({
url: '/api/tasks',
type: 'POST',
data: {hoge: 'fuga', foo: 'bar'},
});
Fetch API 시
URLSearchParams 사용
아래와 같이 바디에 URLSearchParams
를 넣으면 적당히 설정Content-Type
fetch1.jslet params = new URLSearchParams()
params.set('hoge', 'fuga')
params.set('foo', 'bar')
fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
body: params,
})
문자열로 직접 쓰기
헤더를 설정해야 하니 주의하십시오fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
body: 'hoge=fuga&foo=bar',
})
Reference
이 문제에 관하여(Fetch API를 사용하여 jQuery를 수행합니다.aax처럼post 데이터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/sasaki_/items/3c6600180298f03f3fb1
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
let params = new URLSearchParams()
params.set('hoge', 'fuga')
params.set('foo', 'bar')
fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
body: params,
})
fetch('/api/tasks', {
method: 'POST',
credentials: 'include',
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
body: 'hoge=fuga&foo=bar',
})
Reference
이 문제에 관하여(Fetch API를 사용하여 jQuery를 수행합니다.aax처럼post 데이터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sasaki_/items/3c6600180298f03f3fb1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)