2009-02-19 95 views
2

在.NET MVC我的行動看起來像:我的JSON字符串應該在我的Action中看起來像什麼?

public ActionResult TestAjax(string testID) 
{ 

    return Content(@"{first: ""1"", second : ""2""}"); 
} 

在我的JavaScript我做:

function(data) 
{ 
     alert(data.first); 
} 

我得到[object Object]作爲輸出,這是爲什麼?

我的JSON字符串錯了嗎?

回答

3

如何讓系統處理它:

public ActionResult TestAjax(string testID) 
    { 
     return Json(new {first = 1, second = 2}); 
    } 
+0

是啊,如果我補充說,還擔任過「的一個應用/ JSON」,謝謝! – mrblah 2009-02-19 05:05:06

2

你想幹什麼使用JSON返回不滿足

return Json(new { first = "1", second ="2" }); 
相關問題