如何在 Spring.net 中设置 xml 属性的值?

发布于 2024-07-22 17:53:17 字数 184 浏览 7 评论 0原文

如何设置 xml 属性的值?

这是我尝试过但没有成功的方法:

<property name="Resources" value="&#60;resources/&#62;"/>

Resources 是一个 XmlDocument 字段。

How do you set a value of an xml property?

This is what I've tried with no succes:

<property name="Resources" value="<resources/>"/>

Resources is an XmlDocument field.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲喜皆因你 2024-07-29 17:53:17

只是为了澄清:此属性位于一个具有 XmlDocument 字段的对象上,并且您希望将其初始化为具有根元素“resources”的空 XmlDocument。

XmlDocuments 并不总是最容易使用的对象,尤其是在构造方面。

Spring 肯定不知道如何将字符串转换为 XmlDocument。

您可能会发现使用代码生成所需的 XmlDocument 更容易。 例如,创建一个生成 XmlDocument 的静态帮助器方法,并通过调用该方法来设置属性的值。

另一个(kludge-y)选项是有一个“helper”属性,将 xml 作为字符串处理。 例如,名为“_ResourcesXml”的属性,您可以将其设置为 null 或“”。 然后,该属性将构造 XmlDocument 并设置 Resources 属性的支持字段。 同样,读取 _ResourcesXml 可能会返回 Resources.OuterXml。

Just to clarify: This property is on an object that has a field that is an XmlDocument, and you want it to be initialized to an empty XmlDocument with the root element "resources".

XmlDocuments aren't always the easiest objects to work with, especially when it comes to construction.

Spring for sure won't know how to turn a string into an XmlDocument.

You might find it easier to use code to generate the XmlDocument you want. For example, create a static helper method that generates the XmlDocument, and set the value of the property by invoking that method.

Another (kludge-y) option is to have a "helper" property that deals with xml as string. For example, a property called "_ResourcesXml" which you would set to null or "". The property would then construct the XmlDocument and set the backing field for the Resources Property. Similarly, reading _ResourcesXml could return Resources.OuterXml.

如果没有 2024-07-29 17:53:17

我认为您可以通过类似的方法实现所请求的结果(使用 MethodInvokingFactoryObject):

  <object id="Document" type="System.Xml.XmlDocument, System.Xml" />
  <object type="Spring.Objects.Factory.Config.MethodInvokingFactoryObject, Spring.Core">
    <property name="TargetObject">
      <ref local="Document" />
    </property>
    <property name="TargetMethod" value="AppendChild" />
    <property name="NamedArguments">
      <dictionary>
        <entry key="newChild">
          <object type="Spring.Objects.Factory.Config.MethodInvokingFactoryObject, Spring.Core">
            <property name="TargetObject">
              <ref local="Document" />
            </property>
            <property name="TargetMethod" value="CreateElement" />
            <property name="NamedArguments">
              <dictionary>
                <entry key="name" value="resources" />
              </dictionary>
            </property>
          </object>
        </entry>
      </dictionary>
    </property>
  </object>

无论如何,对于您获得的微小效果来说,这似乎非常复杂。 正如纳德已经提到的,创建一个小助手工厂是个好主意。

另一种选择是使用表达式。 您可以调用配置中的方法,例如如下:

<object id="..." type="..." expression="@(Document).CreateElement('resources')" />

I think you can achieve the requested result with something like this (using the MethodInvokingFactoryObject):

  <object id="Document" type="System.Xml.XmlDocument, System.Xml" />
  <object type="Spring.Objects.Factory.Config.MethodInvokingFactoryObject, Spring.Core">
    <property name="TargetObject">
      <ref local="Document" />
    </property>
    <property name="TargetMethod" value="AppendChild" />
    <property name="NamedArguments">
      <dictionary>
        <entry key="newChild">
          <object type="Spring.Objects.Factory.Config.MethodInvokingFactoryObject, Spring.Core">
            <property name="TargetObject">
              <ref local="Document" />
            </property>
            <property name="TargetMethod" value="CreateElement" />
            <property name="NamedArguments">
              <dictionary>
                <entry key="name" value="resources" />
              </dictionary>
            </property>
          </object>
        </entry>
      </dictionary>
    </property>
  </object>

Anyway, this seems very complex for the little effect you get. As Nader already mentioned it is a good idea to create a little helper factory.

Another option is to use expressions. You can call the methods within the config, e.g. as following:

<object id="..." type="..." expression="@(Document).CreateElement('resources')" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文