HttpClients icon indicating copy to clipboard operation
HttpClients copied to clipboard

所有的访问都是Get是日志的问题还是本来就有问题

Open gwhzh21 opened this issue 6 years ago • 0 comments

我用的是wiki中的例子,但是在调Add的时候日志是 request http://127.0.0.1:5000/ error [GET /Add 404 Not Found] Response 这里为啥是GET?

public interface INorthWind { Task GetEmployee(int id); [Post] Task Add(string emp); [Post] Task Login(string name, string value); [Post] Task Modify([CQuery]int id, string body); }

gwhzh21 avatar Feb 01 '20 06:02 gwhzh21