2
Url.Action은 & amp; 내 URL에서 어떻게 해결할 수 있습니까?
변수 itemId 및 entityModel을 ActionResult CreateNote에 보내고 싶습니다. public ActionResult CreateNote( [ModelBinder(typeof(Models.JsonModelBinder))] NoteModel Model, string cmd, long? itemId, string modelEntity) 이 자바 스크립트로 : Model.meta.PostAction = Url.Action("CreateNote", new { cmd = "Save", itemId = itemId, modelEntity = modelEntity}); 그러나 전송되는 URL은 localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44 나는 보내고 싶다 localhost:1304/Administration/blue/en-gb/Entity/CreateNote?modelEntity=Phrase&itemId=44 보내려는 두 번째 변수 …