0

我有一个非常简单的观点。它包含一些 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));
    }
}

我想根据示例进行 ajax 调用。javascript中的代码如何?

4

1 回答 1

2

View 不是声明方法的正确位置。事实上,您在 View 之间编写的所有代码都@{}同一方法中运行(不完全正确,但说明了这一点)。显然,在 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));
        }
    };
 }
于 2013-06-29T21:04:10.190 回答