Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道restler的行为如何。当我通过时getuser/2它工作正常,但是当我通过/getalluser它 时
getuser/2
/getalluser
{ error: { code: 404, message: "Not Found" } }
但是当我将函数名称更改getalluser为它时,buyalluser它工作正常。
getalluser
buyalluser
谁能告诉我restler框架中的函数名有什么问题?
正如你已经发现的
Restler 使用 get、post、put、delete 作为方法前缀来自动将它们映射到相应的 HTTP 方法/动词 GET 是默认的 HTTP 方法,因此如果您不使用上述任何方法作为方法前缀,它将被映射到 GET 方法.