我是asp.net mvc的新手。我在asp.net mvc4应用程序中使用其他Web服务时遇到问题。
这是服务的界面:
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "GetRuleDetail/{id}")]
string GetRuleDetail(string id);
}
在我的mvc应用中,我已将我的服务添加为服务参考" ServiceReference1"
然后我创建了一个控制器:
public ActionResult Index()
{
string strjson = Request["Json"].ToString();
//string strjson = "input={\"name\": \"obj1\",\"x\": 11,\"y\":20,\"obj\":{\"testKey\":\"val\",},\"tab\":[1 , 2, 46]}";
ServiceReference1.Service1Client obj = new ServiceReference1.Service1Client();
return View(obj.GetRuleDetail(strjson));
}
字符串strjson,我想从具有以下代码的视图中传递它:
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";} <h2>Index</h2> <section class="contact">
<header>
<h3>Enter your JSON string</h3>
</header>
<p>
<ol>
<li>
@Html.Label("Json")
@Html.TextBox("txtJson")
</li>
</ol>
</p>
<p>
<button>Test</button>
</p>
我错过了什么吗? Cz strjson始终为null,并且在我在文本框中输入jsonstring之前执行了Index()方法。我该如何修复那个plz
答案 0 :(得分:0)
这不是正确的方法首先你需要渲染一个视图,而不是将它与id一起发布到服务器,然后将其传递给service.You需要创建一个绑定到视图的模型。
首先渲染视图
public ActionResult Index()
{
return View();//Tihs will simply return view
}
这是用于绑定视图的模型类
public class JsonData
{
public string Id { get; set; }
}
这将是您的观点
@model JsonData
@using (Html.BeginForm("GetServiceData", "ControllerName", FormMethod.Post))
{
@Html.Label("Json")
@Html.TextBoxFor(m=>m.Id)
<input type="submit" value="Submit" />
}
现在,当您发布此视图时,它将与文本框中的数据一起转到控制器
[HttpPost]
public ActionResult GetServiceData(JsonData model)
{
ServiceReference1.Service1Client obj = new ServiceReference1.Service1Client();
return View(obj.GetRuleDetail(model.Id));//Tihs will simply return view
}