深入理解 schema
    https://zhuanlan.zhihu.com/p/111050160
    image.pngimage.png
    通俗的理解,就是提交的字段是个对象,
    对象容器里面可以拖放其他表单元素,提交的字段都在这个对象容器作用域内。
    image.png
    提交字段
    image.png

    1. const object = {
    2. "type": "object",
    3. "properties": {
    4. "OBJ": {
    5. "type": "object",
    6. "x-validator": [],
    7. "x-designable-id": "jy8n5tudhvb",
    8. "x-index": 0,
    9. "title": "对象容器",
    10. "name": "OBJ",
    11. "required": false,
    12. "properties": {
    13. "user": {
    14. "type": "string",
    15. "title": "姓",
    16. "x-decorator": "FormItem",
    17. "x-component": "Input",
    18. "x-validator": [],
    19. "x-component-props": {
    20. "maxLength": 100
    21. },
    22. "x-decorator-props": {
    23. "asterisk": false
    24. },
    25. "x-designable-id": "h7ihe7nltr1",
    26. "x-index": 0,
    27. "name": "user",
    28. "required": true
    29. },
    30. "name": {
    31. "type": "string",
    32. "title": "名",
    33. "x-decorator": "FormItem",
    34. "x-component": "Input",
    35. "x-validator": [],
    36. "x-component-props": {
    37. "maxLength": 100
    38. },
    39. "x-decorator-props": {},
    40. "x-designable-id": "3s2y0l7bdmf",
    41. "x-index": 1,
    42. "name": "name",
    43. "required": true
    44. }
    45. }
    46. }
    47. },
    48. "x-designable-id": "3tdyjr137dx"
    49. }