1
クライアントからのパラメータでweb api 2カスタム属性を作成し、クライアントにデータを返すときに問題があります。クライアントからのサンプルデータのためのweb api 2カスタム属性を作成してクライアントに返す方法は?
:
{ id : 1, _token : 221 }
例えば、サーバー上:
//SomeController Action
[CustomActionFilter]
public String Foo(int id)
{
return id;
}
public class CustomActionFilter : ActionFilterAttribute, IActionFilter
{
void IActionFilter.OnActionExecuting(ActionExecutingContext filterContext)
{
//get _token from client httprequest parameter
//return to client if _token != 221
//next proccess if _token == 221
// in real case, will cek token in db and compare it
}
}
CustomActionFilter
で_token
を取得し、_token
場合はJSON形式でクライアントのエラーメッセージに戻す方法を助けてください=! 221?
また、問題がなければ、次のプロセスを実行しますか?