关于mvc、webapi中get、post、put、delete的参数
2020-12-13 16:02
标签:style blog color os sp 数据 div 问题 log 关于mvc、webapi中get、post、put、delete的参数 标签:style blog color os sp 数据 div 问题 log 原文地址:http://www.cnblogs.com/yeagen/p/4078836.html public string Get(int page, int pagesize)
{
return "test1";
}
public string Get(int page)
{
return "test2";
}
public string Get(int page, int pagesize = 10)
{
return "test1";
}
public string Get(int page)
{
return "test2";
}
文章标题:关于mvc、webapi中get、post、put、delete的参数
文章链接:http://soscw.com/essay/35662.html