JsonSimpleValueParseMode
İçindekiler
[
Saklamak
]JsonSimpleValueParseMode enumeration
JSON yüklenirken JSON basit değerlerinin (null, boolean, sayı, tam sayı ve dize) ayrıştırılması için bir mod belirtir. Böyle bir mod tarih-saat değerlerinin ayrıştırılmasını etkilemez.
public enum JsonSimpleValueParseMode
değerler
İsim | Değer | Tanım |
---|---|---|
Loose | 0 | JSON basit değerlerinin türlerinin dize gösterimlerinin ayrıştırılmasıyla belirlendiği modu belirtir. Örneğin, JSON parçacığı ‘{ prop: “123” }‘deki ‘prop’ türü bu modda tamsayı olarak belirlenir. |
Strict | 1 | JSON basit değerlerinin türlerinin JSON gösteriminden belirlendiği modu belirtir. Örneğin, JSON parçacığı ‘{ prop: “123” }‘daki ‘prop’ türü bu modda dize olarak belirlenir. |
Örnekler
JSON’un veri kaynağı (dize) olarak nasıl kullanılacağını gösterir.
Document doc = new Document(MyDir + "Reporting engine template - JSON data destination.docx");
JsonDataLoadOptions options = new JsonDataLoadOptions
{
ExactDateTimeParseFormats = new List<string> {"MM/dd/yyyy", "MM.d.yy", "MM d yy"},
AlwaysGenerateRootObject = true,
PreserveSpaces = true,
SimpleValueParseMode = JsonSimpleValueParseMode.Loose
};
JsonDataSource dataSource = new JsonDataSource(MyDir + "List of people.json", options);
BuildReport(doc, dataSource, "persons");
doc.Save(ArtifactsDir + "ReportingEngine.JsonDataString.docx");
Ayrıca bakınız
- ad alanı Aspose.Words.Reporting
- toplantı Aspose.Words