2011-02-03 12 views
9

Basit bir sorun niçin bir nedenden dolayı beni güldürüyor olmalıdır. MVC'ye yeni geldim, bunu açıklamalıyım.MVC'de bir sayfadaki metin kutusu alanlarını temizleme

Gönderme girdikten sonra bir sayfadaki tüm alanları temizlemeye çalışıyorum.

Aşağıdaki kodun örneklerde kullanıldığını gördüm, ancak nereye koyacağımı bilmiyorum. PersonModel.vb içinde denedim ve hataları atar. Veri tabanlarımda ve işlevlerimi sakladığım Deposu'nda denedim ve her zaman WordStation ve ValueProvierResult sözcükleri üzerinde hata atar.

ModelState.SetModelValue("Key", new ValueProviderResult(null, string.Empty, CultureInfo.InvariantCulture)) 

Birisi, bir sayfadaki alanları (metin kutuları) temizlemem için bana bir tavsiyede bulunabilir mi? MVC'ye çok yeniyim ve bazı yardımları kullanabilirim.

Teşekkür

LW İşte

kodudur ....

<HttpPost(), MvcReCaptcha.CaptchaValidator()> _ 
Function Nominate(ByVal m As NominationModel, ByVal captchaValid As Boolean) As ActionResult 

    Dim db = New ChampionTrees.Common.DataAccess.ChampionTreesRepository With {.UserName = "SYSTEM"} 
    BindNominateDdls(db) 

    Dim addPost As Boolean = False 
    If (Request.Form("addNominator") <> Nothing) Then 
     m.People.Add(New PersonModel With {.Indicator = PersonIndicator.Nominator}) 
     addPost = True 
    ElseIf Request.Form("addOwner") <> Nothing Then 
     m.People.Add(New PersonModel With {.Indicator = PersonIndicator.Owner}) 
     addPost = True 
    Else 
     For Each f In Request.Form.Keys 
      If f.ToString.StartsWith("deletePerson") Then 

       Dim idx = f.ToString.IndexOf("n") 
       m.People.RemoveAt(Integer.Parse(f.ToString.Substring(idx + 1, f.ToString.Length - (idx + 1)))) 
       addPost = True 
       Exit For 

      End If 
     Next 
    End If 

    If addPost Then 

     For Each v In ModelState.Values.AsEnumerable() 
      v.Errors.Clear() 
     Next 

     Return View(m) 

    End If 

    If m.Tree.Id < 0 AndAlso String.IsNullOrEmpty(m.OtherName) Then 

     Dim err As String = "Either a Common, Scientific, or Other Name must be provided." 
     ModelState.AddModelError("Tree.Id", err) 
     ModelState.AddModelError("OtherName", err) 

    End If 

    If String.IsNullOrEmpty(m.Measurement.CountyForester) = _ 
     String.IsNullOrEmpty(m.Measurement.OtherCountyForester) Then 

     Dim err As String = "A County Forester must be selected or entered (but not both)." 
     ModelState.AddModelError("Measurement.CountyForester", err) 
     ModelState.AddModelError("Measurement.OtherCountyForester", err) 

    End If 

    Dim i As Integer = 0 
    For Each p As PersonModel In m.People 

     If String.IsNullOrEmpty(p.EmailAddress) AndAlso _ 
      (p.Phone.Phone1 Is Nothing Or p.Phone.Phone2 Is Nothing Or p.Phone.Phone3 Is Nothing) Then 

      ModelState.AddModelError(String.Format("People[{0}].Phone", i), "Either an E-mail Address or Phone number must be provided.") 
      ModelState.AddModelError(String.Format("People[{0}].Phone.Phone1", i), "") 
      ModelState.AddModelError(String.Format("People[{0}].Phone.Phone2", i), "") 
      ModelState.AddModelError(String.Format("People[{0}].Phone.Phone3", i), "") 
      ModelState.AddModelError(String.Format("People[{0}].EmailAddress", i), " ") 

     Else 

      Dim int As Integer = 0 
      Dim err As Boolean = False 

      If Not p.Phone.Phone1 Is Nothing AndAlso _ 
          (p.Phone.Phone1.Length <> 3 Or Not Integer.TryParse(p.Phone.Phone1, Int)) Then 

       ModelState.AddModelError(String.Format("People[{0}].Phone.Phone1", i), "") 
       err = True 
      End If 
      If Not p.Phone.Phone2 Is Nothing AndAlso _ 
          (p.Phone.Phone2.Length <> 3 Or Not Integer.TryParse(p.Phone.Phone2, int)) Then 

       ModelState.AddModelError(String.Format("People[{0}].Phone.Phone2", i), "") 
       err = True 
      End If 
      If Not p.Phone.Phone3 Is Nothing AndAlso _ 
       (p.Phone.Phone3.Length <> 4 Or Not Integer.TryParse(p.Phone.Phone3, int)) Then 

       ModelState.AddModelError(String.Format("People[{0}].Phone.Phone3", i), "") 
       err = True 
      End If 

      If err Then ModelState.AddModelError(String.Format("People[{0}].Phone", i), "Phone Number is not numeric.") 

     End If 

     If m.OwnershipType = Ownership.Public AndAlso _ 
      p.Indicator = PersonIndicator.Owner AndAlso _ 
      p.ParcelName Is Nothing Then 
      ModelState.AddModelError(String.Format("People[{0}].ParcelName", i), "The Parcel Name field is required for public nominations.") 
     End If 

     i += 1 

    Next 

    If Not m.UseNominatorsAsOwners AndAlso _ 
     (From e In m.People Where e.Indicator = PersonIndicator.Owner Select e).Count = 0 Then 
     ModelState.AddModelError("UseNominatorsAsOwners", "At least one Owner is required.") 
    End If 

    If Files.Count > 0 AndAlso Not m.ElectronicUseAgreement Then 
     ModelState.AddModelError("ElectronicUseAgreement", "The Electronic Use Agreement must be agreed to.") 
    End If 

    If Not captchaValid Then 
     ModelState.AddModelError("ReCaptcha", "You did not type the verification word correctly. Please try again.") 
    End If 

    If ModelState.IsValid Then 

     ' load our uploads from session 
     For Each f In Files 
      f.Value.Viewable = m.ElectronicUseAgreement 
      m.Uploads.Add(f.Value) 
     Next 

     ' insert the nomination into the db 
     db.InsertNomination(m) 

     ViewData("message") = "Nomination has been submitted" 

    End If 

    ModelState.Clear() 
    Return View(m) 

cevap

35

Merhaba kullanmak mümkün olmalıdır: ModelState.Clear() ve Görünüm döndüğünüzde önceki tüm girilen veriler olacak temizlenir.

Düzenleme:

public ActionResult Index() 
{ 
    return View(); 
} 

[HttpPost] 
public ActionResult Index(FormCollection collection) 
{ 
    // This will clear whatever form items have been populated 
    ModelState.Clear(); 

    return View(); 
} 

Güncelleme 2: Kodunuzda

Eğer senin Modeli geçen ancak ModelState temizleyen (bunu m aradım) İşte

bazı örnek kod görünümünüze geri döndüğünüzde ve görünümünüz bu modeli seçip özelliklerini görüntülüyor.

Örneğin, bir ad ve soyadı kabul eden bir sayfam varsa ve bu iletiyi eklediğimde, bunu bir veritabanına eklemek istiyorum ancak sonra aynı görünümü döndürürüm, ancak bir sonraki isteğim için boşum kodum şunun gibi görünecektir:

public ActionResult Index() 
{ 
    return View(); 
} 

[HttpPost] 
public ActionResult Index(Person p) 
{ 
    if (ModelState.IsValid) 
    { 
    // This will clear whatever form items have been populated 
    ModelState.Clear(); 
    // Here I'm just returning the view I dont want a model being passed 
    return View(); 
    } 

    // Here I'm returning the model as there's an error and the user needs to see 
    // what has been entered. 
    return View(p); 
} 
+0

sonra jQuery içinde: – Lee

+0

Hatta aspx sayfasında denedim ve ModelState için bir Clear() yöntemi yok diyor ...... – Lee

+0

Bazı örnek kod ile güncelledim - eğer hala anlamıyorsanız, kodunuzu gönderebilirsiniz. Teşekkürler – lancscoder

4

mümkün jQuery kullanmak ve

$(document).ready(function(){ 
    $("input").each(function(){ 
     $(this).val(""); 
    }); 
}); 

böyle bir şey yapmak ve belki biraz tür olduğu form Jilet kodu yayınladığını tamamlayabileceğini mi. Ben diyor çalıştığınızda

public ActionResult Index() 
{ 
    return View(); 
} 

[HttpPost] 
public ActionResult Index(Person p) 
{ 
    if (ModelState.IsValid) 
    { 
    // do work and finally back to Get Action 
    return RedirectToAction("Index"); 
    } 

    return View(p); 
} 
+0

jQuery hakkında merak ettim .... henüz denemedim. Sayfanın OnLoad olayında bazı kodları düşündüm ama MVC ile yapabileceğinizden emin değilim. – Lee

3

Ya da sadece böyle Eylem Get geri yönlendir olabilir ModelState geçerli olsaydı

"ModelState" bildirilmemiş. Bu kodu nereden kullanmalıyım?
+0

'ModelState.Clear()' benim için çalışmadı. Ama bu yaptı. – th1rdey3

+0

teşekkürler, onun benim sorunu çözüldü RedirectToAction ("Index") yerine View(); – adnan

2

$("#btnID").click(function() { 
    $("input[type=text]").val(""); 

}); 

modelstate.clear() başarılı teslim