标签: xml xquery
例如,我想在下面创建这样的元素:
<book year="2010">Example name</book>
计算元素构造函数的正确用法是什么?
答案 0 :(得分:2)
element book { attribute year { 2010 }, 'Example name' }
或者有些人会建议
element book { attribute year { 2010 }, text { 'Example name' } }