2012-10-05 50 views
0

我有一個Html.ActionLink,我需要發佈到服務器:如何添加一個Model對象到我AJAX.ActionLink

@Html.ActionLink("Some Text", "controller", "service", Model, new { @class = "btn btn-primary", @id = "someText" }) 

我試圖打開到一個AJAX留言本帶:

@Ajax.ActionLink("Some Text", "controller", "service", Model, new { @class = "btn btn-primary", @id = "someText" }, new AjaxOptions(){HttpMethod = "POST"}) 

字符串,字符串,字符串,對象,對象沒有像上面的Html.Actionlink超載。

我對AJAX不是很熟悉,但是有沒有辦法告訴AJAX傳遞相同的數據?

回答

1

看起來你的參數排序不正確。 AjaxOptions出現在屬性之前。

@Ajax.ActionLink("Some Text", "controller", "service", Model, new AjaxOptions(){HttpMethod = "POST"}, new { @class = "btn btn-primary", @id = "someText" }) 
+0

我想我錯過了一些小小的謝謝! – Robert

相關問題