変数itemIdおよびentityModelをActionResult CreateNoteに送信します。
public ActionResult CreateNote(
[ModelBinder(typeof(Models.JsonModelBinder))]
NoteModel Model, string cmd, long? itemId, string modelEntity)
このjavascriptで:
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
送信する2番目の変数の前に&を配置するUrl.Actionを防ぐにはどうすればよいですか?
&
が大丈夫ではないと思う理由は何ですか?