我bind()
用字符串值替换模板中的 XML 元素,如下所示:
bind("foo", nodes, "bar" -> "My Content")
当我在模板中使用自闭合元素时,如下所示:
What I want to see is <foo:bar />, and everything after it.
我偶尔会得到这个:
What I want to see is My Content
而不是这个:
What I want to see is My Content, and everything after it.
但是当我将模板更改为使用非自动关闭的空元素时:
What I want to see is <foo:bar></foo:bar, and everything after it.
我总是会得到完全渲染的内容。
我还没有弄清楚是什么触发了自闭合标签的错误行为。
这仅仅是一个电梯错误,还是有某种原因导致这种情况发生?