コア サービスを使用して SDL Tridion にXMLをロードせずにコンテンツをコンポーネントに設定するにはどうすればよいですか?
質問する
796 次
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 に答える
0
これが役立つかもしれません: http://blog.building-blocks.com/uploading-images-using-the-core-service-in-sdl-tridion-2011 http://blog.building-blocks.com/creating-custom -pages-using-the-core-service-in-sdl-tridion-2011
于 2012-05-04T06:36:00.717 に答える