我有一个 accountcontroller 有 2 个动作这里是声明:
HttpResponseMessage PostAccount([FromBody] Account account)
public HttpResponseMessage PostLogin([FromBody]string email,[FromBody] string pass)
在提琴手中运行,我收到错误 Multiple actions were found that match the request。我对发生的事情有点困惑。我应该为登录和注册制作两个控制器吗?这是标准做法。