XmlElementChildren

  • 处理节点子节点

使用示例

  1. useReducer({
  2. XmlElementChildren (node, store) {
  3. // You can process children node here
  4. let {
  5. ast, //分析的节点
  6. num, //用于调用子原子时加到key值上
  7. projectPath, //页面小程序根路径,pages/xx/xx
  8. deep, //节点深度
  9. refRender //创建自定义组件节点
  10. } = node.body;
  11. }
  12. })