我有以下路线:
routes.MapRoute("Event Overview", "{city}/{type}/{id}",
new {city="LA", controller = "BaseEvent", action = "EventOverview"}, new {city = new CityConstraint()});
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
并且,我的网站上有几个链接:
@Html.ActionLink("Make", "EventOverview", "BaseEvent", new { id = eventInfo.Key.OID, type = eventInfo.Key.XPObjectType.TypeName.GetShortTypeName(), activeTab = "#scheduleLink", session = eventInfo.Key.EventSchedules[0].SessionId, hall = eventInfo.Key.EventSchedules[0].HallId, client = eventInfo.Key.EventSchedules[0].BasePlace.PremieraClientId}, null)
@Html.ActionLink("Make", "EventOverview", "BaseEvent", new { id = eventInfo.Key.OID, type = eventInfo.Key.XPObjectType.TypeName.GetShortTypeName(), activeTab = "#scheduleLink", }, null)
这是`EventOverview动作:
public ActionResult EventOverview(int id, string type, string activeTab,string hall, string session, string client, string count)
{
var model = CreateEventViewData<EventViewData>(id, type);
model.ActiveTab = activeTab;
model.ScheduleCount = count;
model.SessionId = session;
model.HallId = hall;
model.ClientId = client;
return View("Controls/EventsInfo/EventInfo", model);
}
在传递许多参数的第一个链接中,以及浏览器地址字段中的所有节目:
这是为了第一个链接:
http://localhost:62291/LA/Film/36?activeTab=%23scheduleLink&session=15&hall=65&client=2&count=1
这是第二个链接:
http://localhost:62291/LA/Film/36?activeTab=%23scheduleLink
我想要这样的东西:
http://localhost:62291/LA/Film/36
在地址行中隐藏参数的方法有哪些?
更新
$(document).ready(function () {
var link = $(".btn_buy_ticket").find("a").click(function (e) {
e.preventDefault();
$.post($(this).attr("href"));
});
})
[HttpPost]
public ActionResult EventOverview(int id) // just for test
{
return RedirectToAction("EventOverview", new {id = id});
}
public ActionResult EventOverview(int id, string type, string activeTab,string hall, string session, string client, string count)
{
var model = CreateEventViewData<EventViewData>(id, type);
model.ActiveTab = activeTab;
model.ScheduleCount = count;
model.SessionId = session;
model.HallId = hall;
model.ClientId = client;
return View("Controls/EventsInfo/EventInfo", model);
}
调用所有操作,但未加载EventInfo
视图。
答案 0 :(得分:4)
您可以使用POST而不是GET。因此,您可以将包含隐藏字段的表单替换为您不希望在查询字符串中显示的参数:
@using (Html.BeginForm("EventOverview", "BaseEvent", new { id = eventInfo.Key.OID, type = eventInfo.Key.XPObjectType.TypeName.GetShortTypeName() }, FormMethod.Post, null))
{
@Html.Hidden("activeTab", "#scheduleLink")
@Html.Hidden("session", eventInfo.Key.EventSchedules[0].SessionId)
@Html.Hidden("hall", eventInfo.Key.EventSchedules[0].HallId)
@Html.Hidden("client", eventInfo.Key.EventSchedules[0].BasePlace.PremieraClientId)
<button type="submit">Make</button>
}
答案 1 :(得分:0)
如何隐藏网址参数
如果要隐藏URL参数,可以转到调试属性,然后选择radiobutton
选项并指定该参数
specificpage:
http://localhost:61757/TicketDataUpload/templateupload?projectid=6497&userid=7336
这是参数URL。如果你想隐藏这样的话:
http://localhost:61757/Controller/index
您必须在打开页面时放入特定页面,它不会显示URL参数。
答案 2 :(得分:0)
我的解决方案(有点丑陋):照原样保留代码,然后在html文档加载后(此时服务器已经使用了您的查询字符串数据),在JavaScript中使用history.pushState像这样更改地址栏中的网址:
int Number = 0;
Number = (int)Console.ReadLine();
一瞬间,查询字符串将出现在地址栏中,但是在上面的js运行之后,包括“?”和之后的所有内容您网址中的内容将消失。
显然,副作用是它会更改浏览器的会话历史记录,但这对我来说不是问题。
请注意,我已经将空状态传递给pushState了-再次,这对我来说不是问题,但可能会导致问题,具体取决于应用程序的路由设置方式以及是否使用状态变量