我有两个api端点。两者都在下面给出。当我在axios请求下执行这些操作时,第一个api都被触发。谁能告诉我这里的映射是如何完成的?
1. router.get('/api/posts/user/:id', (req, res)
2. router.get('/api/posts/:tag', (req, res)
1. axios
.get(`http://localhost:5000/api/posts/user/${id}`)
2. axios
.get(`http://localhost:5000/api/posts/${tag}`)