-1

コア サービスを使用して SDL Tridion にXMLをロードせずにコンテンツをコンポーネントに設定するにはどうすればよいですか?

4

2 に答える 2

2

コア サービスを介して通常のコンポーネントを作成する場合は、このヘルパー クラスを使用して XML を自分で作成する必要がなくなります。

これにより、次のようなコンポーネントを作成できます。

schemaFields = client.ReadSchemaFields("tcm:1-2-8", true, DEFAULT_READ_OPTIONS);
component = (ComponentData)client.GetDefaultData(ItemType.Component, "tcm:1-57-2");

fields = Fields.ForContentOf(schemaFields);

component.Title = "Name of component (created at "+ DateTime.Now + ")";
fields["Title"].Value = "Title of newly created component";
fields["Intro"].Value = "Intro of newly created component";
fields["Section"].AddValue("This is the first section");
fields["Section"].AddValue("This is the section section");

component.Content = fields.ToString();

component = (ComponentData)client.Create(component, DEFAULT_READ_OPTIONS);
于 2012-05-04T14:16:56.627 に答える