2016-11-29 112 views

回答

1

當你需要根據病情來返回結果

public ActionResult TestAction() 
{ 
    if(true) 
     return View(); 
    else 
     Json(anyObject); 
} 
相關問題