我不知道如何设置“预定日期”字段是必需的。我根据需要设置时没有得到数据。如果有人知道,请帮忙。验证无效。
视图:
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();
}
}
答案 0 :(得分:0)
您必须使用角度验证方式,将required
更改为ng-required="true"
。