2014-07-11 54 views
-2

我想SOM動態數據加載到@ ajax.actionlink使用數據ajax.actionlink

<tr ng-repeat="child in row.child" ng-if="row.visible" class="expand-wrapper">       
    <td> 
     @Ajax.ActionLink("{{child.contractname}}", "home", "index", new { value = "{{child.contractId}}" }, new AjaxOptions { HttpMethod = "POST", OnSuccess = "window.location.reload()" }) 
    </td> 
</tr> 

鏈接文本數據呈現罰款,但value = "{{child.contractId}}"不會呈現在所有。它給了我這個url = someurl/home?value=%7B%7Bchild.contractId%7D%7D

+0

添加一些實際的代碼,在此之前任何人會去試着解決它格式化好 – maurycy

回答

1

找到自己的答案。

<a href="@Url.Action("Index", "Home")/{{child.contractId}}" target="_self">Index</a>

0

你不能使用MVC Html Helper,因爲你的代碼是在服務器端生成的。而大括號轉換成%7B 應該有助於

<a data-ajax="true" data-ajax-method="POST" data-ajax-success="window.location.reload()" href="/index/home?value={{child.contractname}}">{{child.contractname}}</a>