강의

멘토링

로드맵

Inflearn Community Q&A

b0jun's profile image
b0jun

asked

[Renewal] Creating NodeBird SNS with React

Query string and lastId method

user saga에서 질문있습니다.

Written on

·

130

0

아래 두요청 역시 get요청인데 저렇게 data를 담아서 보내도 될까요?

function loadFollowersAPI(data) {
return axios.get('/user/followers', data);
}
function loadFollowingsAPI(data) {
return axios.get('/user/followings', data);
}
reactnodejsexpressreduxNext.js

Answer 1

0

zerocho님의 프로필 이미지
zerocho
Instructor

get 요청은 데이터를 못 담습니다. 쿼리스트링을 이용해야 합니다.

b0jun's profile image
b0jun

asked

Ask a question