gpt4 book ai didi

actionscript-3 - 柔性 4 : XML Literals with conditions

转载 作者:行者123 更新时间:2023-12-04 06:49:01 24 4
gpt4 key购买 nike

有没有办法在 Flex 中做类似下面的事情(伪代码):

var x:XML = <xml>
if(condition){
<tag>hello</tag>
}
</xml>;

这将返回 <xml><tag>hello</tag></xml>如果条件为真且<xml></xml> (或 <xml/> )如果条件为假?

附加说明:我知道如何附加子项等。我正在寻找一种在文字表达式中执行此操作的方法。

最佳答案

我对它的简单性以及 AS3 的强大性感到非常惊讶。以下实际有效:

var x:XML = <xml>{condition ? <tag>hello</tag> : ""}</xml>;

关于actionscript-3 - 柔性 4 : XML Literals with conditions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13860722/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com