私のアプリは基本的にアンケート/テスト ジェネレーターであり、必要に応じてさまざまな種類の質問を出力できます。質問の種類ごとにモデルがあります。ただし、私の検証は機能しません (クライアント側で私が求めるのはすべて、サーバー側で実行できます)。
私のコードの一部:
@model IEnumerable<fsForms.Models.abstractQuestion>
@using(Html.BeginForm())
{
@Html.ValidationSummary(true)
foreach(var item in Model) {
switch(item.questionType){
case 1:
{
if(item.isRequired)
{
var txtReq = (fsForms.Models.FreeTextReq)item;
@Html.EditorFor(model=> txtReq.textboxVal);
@Html.ValidatorMessageFor(model=>txtReq.textboxVal);
}
}
}
}
}
私のモデルは単純です:
public class FreeTextReq:abstractQuestion
{
[Required(ErrorMessage="This field is required")]
public String textboxVal;
}
ご意見ありがとうございます。
PS: 結果の HTML は次のようになります。
<body>
<form action="blahblahblah" method="post">
<input class="text-box single-line" id="txtReq_textboxVal" type="text" value="" />
<span class="field-validation-valid" data-valmsg-for="txtReq.textboxVal" data-valmsg-replace="true"></span>
<input type="submit" value="submit info">
</form>
////////Here follow all my scripts (including jQuery validation scripts) ////////////
</body>