闭关修行中......
Thanks for the invitation. Add app.get('./apps')
app.get('./apps')
你的路由用的是post方法,然后你的请求是get,肯定对不上啊。如果想偷懒,或者这个接口比较简单,直接app.all('./apps')Your routing uses the post method, and your request is get, which is definitely not correct. If you want to be lazy, or the interface is relatively simple, just app.all('./apps')
app.all('./apps')
Could you please tell me that there is a post processing handler for registration/apps? What is a non-existent path?
Thanks for the invitation. Add
app.get('./apps')
app.get('./apps')
你的路由用的是post方法,然后你的请求是get,肯定对不上啊。如果想偷懒,或者这个接口比较简单,直接
app.all('./apps')
Your routing uses the post method, and your request is get, which is definitely not correct. If you want to be lazy, or the interface is relatively simple, justapp.all('./apps')
Could you please tell me that there is a post processing handler for registration/apps?
What is a non-existent path?