コード例 #1
0
 public HomeModule()
 {
     Get["/"] = _ =>
     {
         Dictionary <string, string> model = new Dictionary <string, string>();
         model["HasResponse"] = "false";
         return(View["index.cshtml", model]);
     };
     Post["/"] = _ =>
     {
         Dictionary <string, string> model = new Dictionary <string, string>();
         model["HasResponse"] = "true";
         model["value"]       = ScrabbleWord.GetWordValue(Request.Form["userInput"]).ToString();
         return(View["index.cshtml", model]);
     };
 }