XmlElmentProp

  • 处理通用属性

使用示例

  1. useReducer({
  2. XmlElmentProp (node, store) {
  3. // You can process xml props here
  4. let {
  5. propKey, //属性键
  6. props, //属性信息对象
  7. index, //用于调用子原子时加到key值上
  8. type, //标签名
  9. length //标签的属性个数
  10. } = node.body;
  11. let prop = propKey;
  12. })