ASP.NET Core中的Action的返回值类型
在asp.net core之前所有的action返回值都是actionresult,json(),file()等方法返回的都是actionresult的子类。并且core把mvc跟webapi合并之后action的返回值体系也有了很大的变化。
actionresult类
actionresult类是最常用的返回值类型。基本沿用了之前asp.net mvc的那套东西,使用它大部分情况都没问题。比如用它来返回视图,返回json,返回文件等等。如果是异步则使用task
actionresult类实现了iactionresult接口所以能用actionresult的地方都可以使用iactionresult来替换。同样异步的话使用task包起来做为返回值。 asp.net core的controller的action可以把poco类型(其实不一定是poco类,可以是任意类型,但是使用的时候一般都返回viwemodel等poco类)当做返回值,不一定非要是actionresult或者iactionresult。asp.net core框架会帮我们自动序列化返回给前端,默认使用json序列化。同样异步的话使用task包起来做为返回值。 当我们设计restful webapi系统的时候习惯使用poco做为返回值。比如我们设计一个获取person的api。通过 /person/001 url获取001号person。 这个方法看起来好像没什么问题,但其实有个小问题。如果repository.get方法没有根据id查找到数据,那么将会返回null。如果null做为action的返回值,最后框架会转换为204的http status code。 现在如果查找不到person数据,则系统会返回404 not found 。 很不幸,这段代码vs会提示错误。因为返回值类型不一致。方法签名的返回值是person,但是方法内部一会返回notfoundresult,一会返回person。 现在vs已经不会报错了,运行一下也可以正常工作。但仔细想想也很奇怪,为什么返回值类型改成了actionresult< person >就不报错了呢?明明返回值类型跟方法签名还是不一致啊? 接上面的问题,让我们看一下actionresult的内部: 表示actionresult类型可以转换为actionresult< tvalue >类型。 表示tvalue类型可以转换为actionresult< tvalue >类型。 因为有了这2个方法,当actionresult或者tvalue类型往actionresult< t >赋值的时候会进行一次自动的类型转换。所以vs这里不会报错。 public class testcontroller : controller
{
public actionresult index()
{
return view();
}
public actionresult myfile()
{
return file(new byte[] { }, "image/jpg");
}
public actionresult myjson()
{
return json(new { name = "json" });
}
public actionresult ok()
{
return ok();
}
}
iactionresult接口
public class itestcontroller : controller
{
public iactionresult index()
{
return view();
}
public iactionresult myfile()
{
return file(new byte[] { }, "image/jpg");
}
public iactionresult myjson()
{
return json(new { name = "json" });
}
public iactionresult httpok()
{
return ok();
}
public async task<iactionresult> asynccall()
{
await task.delay(1000);
return content("ok");
}
}
直接返回poco类
public class person
{
public string name { get; set; }
public string sex { get; set; }
}
public class itestcontroller : controller
{
public person getperson()
{
return new person { name = "abc", sex = "f" };
}
public async task<list<person>> getpersons()
{
await task.delay(1000);
return new list<person> {
new person { name = "abc", sex = "f" },
new person { name = "efg", sex = "m" }
};
}
}
actionresult< t >泛型类
[route("[controller]")]
public class personcontroller : controller
{
ipersonrepository _repository;
personcontroller(ipersonrepository repository)
{
_repository = repository;
}
[httpget("{id}")]
public person get(string id)
{
return _repository.get(id);
}
}
204表示no content 。做为restful api,204的语义在这里会有问题,这里比较适合的status code是404 not found 。那么我们来改一下: [httpget("{id}")]
public person get(string id)
{
var person = _repository.get(id);
if (person == null)
{
response.statuscode = 404;
}
return person;
}
但是这看起来显然不够优雅,因为controllerbase内置了notfoundresult notfound() 方法。这使用这个方法代码看起来更加清晰明了。继续改: [httpget("{id}")]
public person get(string id)
{
var person = _repository.get(id);
if (person == null)
{
return notfound();
}
return person;
}
解决这个问题就该actionresult< t >出场了。我们继续改一下: [httpget("{id}")]
public actionresult<person> get(string id)
{
var person = _repository.get(id);
if (person == null)
{
return notfound();
}
return person;
}
深入actionresult< t >
看到这里就明白了原来actionresult< t >里面内置了2个implicit operator方法。implicit operator用于声明隐式类型转换。public static implicit operator actionresult<tvalue>(actionresult result);
public static implicit operator actionresult<tvalue>(tvalue value)
总结
推荐阅读
-
ASP.NET Core应用中与第三方IoC/DI框架的整合
-
ASP.NET Core中预压缩静态文件的方法步骤
-
ASP.NET Core 2.2中的Endpoint路由详解
-
ASP.NET Core中自定义路由约束的实现
-
详解ASP.Net Core 中如何借助CSRedis实现一个安全高效的分布式锁
-
ASP.NET实现MVC中获取当前URL、controller及action的方法
-
ASP.NET Core 中的 ObjectPool 对象重用(二)
-
Asp.net Core MVC中怎么把二级域名绑定到特定的控制器上
-
Asp.Net Core中基于Session的身份验证的实现
-
4. abp中的asp.net core模块剖析