我有一个带有 3 个参数的 MVC3 操作方法,如下所示:
var url = "/Question/Insert?" + "_strTitle='" + title + "'&_strContent='" + content + "'&_listTags='" + listTags.toString() + "'";
我想通过普通的javascript函数而不是AJAX来调用它(因为没有必要使用AJAX函数)我试图使用这个函数但它没有用:
window.location.assign(url);
它没有跳转到 QuestionController 的插入操作。
有人愿意帮助我吗?非常感谢
这是更详细的
我想向数据库插入新问题,但我必须从 CKeditor 获取数据,所以我必须使用下面的这个函数来获取和验证数据
// insert new question
$("#btnDangCauHoi").click(function () {
//validate input data
//chủ đề câu hỏi
var title = $("#txtTitle").val();
if (title == "") {
alert("bạn chưa nhập chủ đề câu hỏi");
return;
}
//nội dung câu hỏi
var content = GetContents();
content = "xyz";
if (content == "") {
alert("bạn chưa nhập nội dung câu hỏi");
return;
}
//danh sách Tag
var listTags = new Array();
var Tags = $("#list_tag").children();
if (Tags.length == 0) {
alert("bạn chưa chọn tag cho câu hỏi");
return;
}
for (var i = 0; i < Tags.length; i++) {
var id = Tags[i].id;
listTags[i] = id;
//var e = listTags[i];
}
var data = {
"_strTitle": title,
"_strContent": content,
"_listTags": listTags.toString()
};
// $.post(url, data, function (result) {
// alert(result);
// });
var url = "/Question/Insert?" + "_strTitle='" + title + "'&_strContent='" + content + "'&_listTags='" + listTags.toString() + "'";
window.location.assign(url); // I try to use this, and window.location also but they're not working
});
此 URL 通过 POST 方法调用下面的 MVC 操作“插入”
[HttpPost]
[ValidateInput(false)]
public ActionResult Insert(string _strTitle, string _strContent, string _listTags)
{
try
{
//some code here
}
catch(Exception ex)
{
//if some error come up
ViewBag.Message = ex.Message;
return View("Error");
}
// if insert new question success
return RedirectToAction("Index","Question");
}
如果插入操作成功,它将重定向到列出所有问题的索引页面,包括已插入的新问题。如果没有,它将显示错误页面。所以,这就是我不使用 AJAX 的原因
有人帮我吗?谢谢 :)