我有2個視圖,一個返回屬於一個項目的所有位置,另一個返回一個包含用於在谷歌地圖上顯示它們的位置的json文件。 列出這些位置是這樣的,因爲id是與actionlink一起發送的,但是如何將項目ID發送到Map視圖?傳遞變量來查看ASP MVC
public ActionResult GoogleMaps(int id)
{
return View(Project.Find(id).DeviceLocations);
}
//[AutoRefresh(DurationInSeconds = 30)]
public ActionResult Map(int id)
{
var map = Project.Find(id).DeviceLocations;
Locations l = new Locations();
l.locations = map;
return Json(l, JsonRequestBehavior.AllowGet);
}
但使用ViewData是不好的做法:) – Stefanvds 2010-09-22 13:55:11