我有一个很简单的观点。它包含一些C#代码。
@{
ViewBag.Title = "Community";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div id="req1">
<form>
<input id="txt1" type="text" name="txt1" />
</form>
</div>
<div id="btn1">Send</div>
<div id="res1"></div>
@{
public string GetPassage(string strSearch)
{
using (var c = new System.Net.WebClient())
{
string url = "http://www.esvapi.org/v2/rest/passageQuery?key=IP&passage=' + strSearch + '&options=include-passage-references=true";
return c.DownloadString(Server.UrlDecode(url));
}
}
}
我不知道出了什么问题。错误消息是:
Source Error:
Line 117:EndContext("~/Views/Home/Community.cshtml", 236, 9, true);
更新
如果我将代码移动到控制器。
public ActionResult Community()
{
ViewBag.Message = "";
return View();
}
public string GetPassage(string strSearch)
{
using (var c = new System.Net.WebClient())
{
string url = "http://www.esvapi.org/v2/rest/passageQuery?key=IP&passage=" + strSearch + "&options=include-passage-references=true";
return c.DownloadString(Server.UrlDecode(url));
}
}
我想基于the example进行ajax调用。 javascript中的代码如何?
答案 0 :(得分:2)
视图不是声明方法的正确位置。事实上,您在@{
和}
之间的视图中编写的所有代码都在同一个方法中运行(不完全正确,但却说明了这一点)。显然,在C#中,在另一个方法中声明一个方法是不可能的,查看引擎根本没有足够的方法将它翻译成你的字面意思。
但是,如果您在视图上需要一些实用工具方法 - 您可以创建一个委托并稍后调用它:
@{
ViewBag.Title = "Community";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div id="req1">
<form>
<input id="txt1" type="text" name="txt1" />
</form>
</div>
<div id="btn1">Send</div>
<div id="res1"></div>
@{
Func<string, string> getPassge = strSearch =>
{
using (var c = new System.Net.WebClient())
{
string url = "http://www.esvapi.org/v2/rest/passageQuery?key=IP&passage=' + strSearch + '&options=include-passage-references=true";
return c.DownloadString(Server.UrlDecode(url));
}
};
}