簡単な質問があります。剣道ウィンドウを使用すると、次のように更新できます。
window.refresh({
url: '@Url.Action("_EditScheduleInspectionForm", "TLM")',
そのController Actionにパラメータを渡したいです。私は次のことを試しましたが、うまくいきます:
window.refresh({
url: '@Url.Action("_EditScheduleInspectionForm", "TLM", new { test = "test"})',
コントローラ
public PartialViewResult _EditScheduleInspectionForm(string test)
変数にはtest
、渡された文字列「test」が入ります。しかし、文字列をハードコーディングしたくありません。次のように、そこに javascript 変数を渡したいです。
var test = "something";
window.refresh({
url: '@Url.Action("_EditScheduleInspectionForm", "TLM", new { test = test})',
しかし、上記は機能せず、変数が認識されません。どうすればこれを達成できますか?