我正在開發一個帳號有字符的遊戲網站。我使用的路線: account/{action} //execute `action` on the current account
character/{name}/{action} //execute `action` on specific character
但我需要delete和undelete(他們是軟刪除)字符,而使用形式是delete正道,
我想創建一個基於Asp.Net MVC4 web api框架的REST api。 GET請求正常工作。所有其他動詞都被服務器忽略。 它只是說以下內容: "No action was found on the controller 'Track' that matches the request."
雖然示例錯誤是從軌道控制所有其他控制器有同樣的問題。 這是在控制器軌跡的方法,我試圖調用: [H