Get request exception in koa2

when writing the get interface in koa2, I want to use /: id to pass data with parameters; but when I have a generation of parameters;

is as follows
clipboard.png

:
clipboard.png

when a get request with no parameters is normal, and it is normal to use post; does anyone know why?

Feb.28,2021

first, your path matches the corresponding url
get / Api/essay/find_essay_page/1 (where 1 is id)
second, you need to add the basics of koa

Menu