2011-07-02 68 views

回答

5

你只是缺少周圍的網址的報價,並已搞砸Url.Action幫手語法。下面是正確的方法:

$.get('@Url.Action("Action", "Controller")', function (result) { 
    // TODO: process the results of the server side call 
}); 

通知各地傳遞到$不用彷徨方法和Url.Action幫手簽名的URL的單引號。

+0

是的,我真是一個愚蠢的無知。謝謝。但是有關這種方法的實用性的想法? –

+1

@Saeed Neamati,做什麼的實用性?如果是爲了做AJAX請求,是的,這很好。 –

相關問題