我有这个html表单我需要从控制器获得一些结果(如布尔结果)....... 这就是我的表格的样子....
<div id="temp"></div>
@using (Html.BeginForm("Result", "Home"))
{
@Html.TextBox("str")
<input type="submit" value="Submit" id="submit">
}
这就是我的Get Method和Post Method在控制器中的样子......
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(string str)
{
bool res = true;
if(str == "Jude")
res=true;
Return View(res);
}
所以现在我需要做的是,我需要检查结果是真还是假,并从html页面给用户确认........
<script>
$('#submit').click(function () {
alert("hello");
$.get("../Home/Index", function (data) {
var res = html(data);
if (res == true)
$('#temp').replaceWith("Success");
else
$('#temp').replaceWith("Some Thing Went Wrong!!");
});
//$.ajax({
// type: "GET",
// url: "../Home/Index",
// data: data,
// success: function (data)
// {
// $('#temp').append("hello");
// },
// dataType: dataType
//});
});
</script>
请给我一个如何解决这个问题的想法....... 谢谢!!!!
答案 0 :(得分:0)
将数据从控制器返回为JSON,例如。你的输出应该是这样的 {&#34; res&#34;:true}
然后在js方面: ... if(data.res == true) ...