私は変数を持っています
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);
}
しかし、何も見つかりませんでした。