使用Rebol和rebelxml创建XML

时间:2009-10-10 08:45:04

标签: rebol

doc http://www.rebol.org/documentation.r?script=rebelxml.r中用于创建XML的示例

>> clear-xml-data
== ""
>> set-xml-data/content 'test/test "test"
== "<test><test>test</test></test>"
>>

但是当我想创建一些变体时,它似乎不起作用:

>> clear-xml-data
== ""
>> set-xml-data/content 'test "test"
** Script Error: foreach expected data argument of type: series
** Where: set-xml-data
** Near: foreach tag path [
    sub-rule: copy []
    append sub-rule reduce [
        'thru to-open-tag tag
    ]
    if all [...
>>

这个也不起作用:

>> clear-xml-data
== ""
>> set-xml-data/content/with-attribute 'test/test "test" 'id "500"
== ""
>>

我的语法有问题吗?

1 个答案:

答案 0 :(得分:2)

这个脚本有问题...不要使用它。

如果您想使用XML,那么创建REBOL对象,然后使用Gavin McKenzie的库将它们转换为XML。他们在rebol.org上