2013-10-17 130 views
8

我總是得到'錯誤'警報,我無法弄清楚什麼是錯的。我只是試圖找回我發送的字符串(「testexpression」)。它必須是數據部分的東西,因爲沒有參數就可以工作。通過jQuery的傳遞數據ajax

這裏的jQuery的一部分:

<script> 

$("#meaning").blur(function() { 

    $.ajax({ 
     type: "POST", 
     url: '/GetMeaning/', 
     data: {"expression" : "testexpression"}, 
     contentType: "application/json; charset=utf-8", 
     dataType: "json", 
     success: successFunc, 
     error: errorFunc 
    }); 

    function successFunc(data, status) { 
     $("#dictionaryDropDown").html(data); 
    } 

    function errorFunc() { 
     alert('error'); 
    } 
}) 
</script> 

這是控制器:

public class GetMeaningController : Controller 
{ 
    // 
    // GET: /GetMeaning/ 

    [HttpGet] 
    public ActionResult Index() 
    { 
     return View(); 
    } 

    [HttpPost] 
    public ActionResult Index(string expression) 
    { 

     return Json(expression, JsonRequestBehavior.AllowGet); 

    } 

} 

(更新:該類型後,我只是想出來用得也和我將其留在)

回答

12

您需要以字符串/ json的形式發送數據。您正在發送一個JavaScript對象。此外,該URL可能需要一個絕對URL,而不是相對URL

$("#meaning").blur(function() { 

    $.ajax({ 
     type: "POST", 
     url: '/GetMeaning/', 
     data: JSON.stringify({expression: "testexpression"}), 
     contentType: "application/json; charset=utf-8", 
     dataType: "json", 
     success: successFunc, 
     error: errorFunc 
    }); 

    function successFunc(data, status) { 
     $("#dictionaryDropDown").html(data); 
    } 

    function errorFunc() { 
     alert('error'); 
    } 
}) 
0

在後端側,我建議

return Json(
    new { this.expression = expression }, 
    JsonRequestBehavior.AllowGet); 

假設你要發送回一個實際的JSON,而不僅僅是一些隨機字符串。