angularjs如何在日期上进行验证。当我使用日期选择器

时间:2017-03-20 06:50:15

标签: jquery angularjs validation datepicker bootstrap-datepicker

我不知道如何设置“预定日期”字段是必需的。我根据需要设置时没有得到数据。如果有人知道,请帮忙。验证无效。

视图:

    CONFIG.bCaptureCONNECT = true;
    CONFIG.IgnoreServerCertErrors = false;
    if (!CertMaker.rootCertExists())
    {
        if (!CertMaker.createRootCert())
        {
            throw new Exception("Unable to create cert for FiddlerCore.");
        }
        X509Store certStore = new X509Store(StoreName.Root, StoreLocation.LocalMachine);
        certStore.Open(OpenFlags.ReadWrite);
        try
        {
            certStore.Add(CertMaker.GetRootCertificate());
        }
        finally
        {
            certStore.Close();
        }
    }

1 个答案:

答案 0 :(得分:0)

您必须使用角度验证方式,将required更改为ng-required="true"