以下のように onSuccess コールバックを持つ asp.net mvc アプリケーションに Ajax フォームがあります。
function onSuccessReport(context)
{
$('reportChart').empty();
var line1=@Html.GetStrippedString(context.Expenses);
}
文字列を受け取って操作し、文字列を返す html ヘルパーを定義しました。
onSuccessReport に渡すのは、次のような構造を持つ json の結果です。
しかし、context.Expenses を送信できず、アプリケーションが構文エラーをスローします。
javascript 変数をヘルパーに送信するにはどうすればよいですか?
ありがとう
編集済み: 私の見解のエラー
****エラー 1 名前 'context' は現在のコンテキストに存在しません****
C# メソッド
json = json.Replace("\"Date\":", string.Empty);
json = json.Replace("\"Total\":", string.Empty);
json = json.Replace('}', ']');
json = json.Replace('{', '[');
return MvcHtmlString.Create(json);