ServiceStack RestService具有Get,Put,Post,Patch但不包含Option的处理程序。 我想使用" Option"告诉客户端授权(角色)可以获得哪些操作。
这是不可能的,不好的做法,已经在ServiceStack中实现了吗?
答案 0 :(得分:4)
检查ServiceStack's New API是否处理OPTION请求,基本上如果你想在现在可以做的选项请求上发回CORS标题:
public class ReqstarsService : Service
{
[EnableCors]
public void Options(Reqstar request) {}
}