我需要一些工作如下:
- 我将一些值客户端传递到服务器端(使用 ajax 的 mvc 格式)
- 在某些操作后检查我的控制器中的值,它需要返回在我的客户端中找不到的检查 id(这是第一个错误消息)。
- 如果此条件为真,则意味着在下一步中检查另一个条件。
- 在这种情况下,请检查该值是否为客户提供消息,例如“您是否愿意为同一个学生执行 id '是'对所有人都是''否''对所有人都没有'。
- 使用此单击操作,我将执行下一个操作。
[我对第 4 步和第 5 步很困惑]。我只是下面给出的示例代码括号,请转发你的大知识。我知道这是凝灰岩之一。谢谢
我的代码:
public ActionResult Action(parameters)
{
foreach (var seletedid in id)
{
// my code
}
if (1st condition )
{
return Json(new { success = false });
// 1st error message i use like this
// after that the preform goes to the end
}
try
{
foreach (some code)
{
// my code
if (2nd condtion (3 point))
{
// using this i perform the some action herer
}
}
}
catch (Exception ex)
{
return null;
}
return null;
}