次のような作業が必要です。
- クライアント側からサーバー側に何らかの値を渡します(ajaxを使用したmvc形式)
- 何らかのアクションの後にコントローラーの値を確認します。クライアント側で見つからないチェック済みの ID を返す必要があります (この最初のエラー メッセージ)。
- この条件が true の場合は、次のステップで別の条件を確認することを意味します。
- この状態で、値をチェックして、「同じ学生の id を実行しますか 'yes' yes to all' 'no' 'no to all'.
- このクリック アクションを使用して、次のアクションを実行します。
[私は 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;
}