req.body is missing from axios request

Viewed 21

Here is the request that makes the req.body empty

const getLatest = async (limit) => (await axios({method: "GET", 
                                                url: `/posts/latest`,
                                                data: {limit: limit},})).data;

What is the problem here.

0 Answers
Related