我使用d3js庫繪製圖表。下面是我打電話這樣的動作:從JavaScript調用正確的控制器 - ASP.NET MVC
d3.json("CANCEL_REASON/Statistics2", function (data) {
....
我的控制器是這樣的:
public class CANCEL_REASONController : Controller
{
private Entities3 db = new Entities3();
public ActionResult Statistics()
{
return View();
}
public ActionResult Statistics2()
{
///...
return Json(data, JsonRequestBehavior.AllowGet);
}
當我調試JavaScript中,我認識到,它試圖撥打:
http://localhost:12345/CANCEL_REASON/CANCEL_REASON/Statistics2
當我將js更改爲:
d3.json("/Statistics2", function (data) {
....
它試圖調用此:
我應該如何修改我的代碼,以便它會調用這個:
和
感謝。
嘗試'/ CANCEL_REASON/Statistics2' –