且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用核心服务在 SDL Tridion 中不加载 XML 的情况下为组件设置内容?

更新时间:2022-03-07 21:02:09

如果您希望通过核心服务创建常规组件,您可以使用 这个辅助类.

If you are looking to create a regular Component through the Core Service, you can avoid having to craft the XML yourself by using this helper class.

有了这个,你可以像这样创建一个组件:

With this you can create a Component like this:

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);