0

私は変数を持っています

var result = client.DownloadString(query);

mvc 4 rzaorで。デバッグ中はホバリングすると下の画像のようになります 結果

私が欲しいのはそれを表示することなので、コードでjavascriptに返します:

function myFunction() {
        $('#response').text('@(Url.Action("result"))');
    }

編集:

<div id="response"></div>
@{
   var strSearch = "test";
   var options = "include-passage-references=true";
   var client = new WebClient();
   var query = string.Format("http://www.xxx.org/v2/rest/passageQuery?key={0}&passage={1}&options={2}", "IP", Server.UrlEncode(strSearch), options);
   var result = client.DownloadString(query);
 }

しかし、何も見つかりませんでした。

4

1 に答える 1

2

そのためには ViewBag を使用する必要があります。

C# の場合:

ViewBag.result = client.DownloadString(query);

HTML の場合:

function myFunction() {
        $('response').text('@ViewBag.result');
}
于 2013-06-28T18:55:57.860 に答える