변수 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
보내려는 두 번째 변수 앞에 &를 넣는 Url.Action을 어떻게 방지 할 수 있습니까?
&
좋지 않다고 생각하는 이유는 무엇입니까 ?