Как сгладить данные мультиобъекта и отобразить их в JSON-схему с помощью activJS? - PullRequest
0 голосов
/ 25 июня 2019

Я хочу создать форму схемы json и отобразить значение.

'queues.bootStrapServers': {
   title: 'BootStrap Servers',
   type: 'array',
   items: { 
     type : "object", 
     properties :{
       'hostUrl' : {
          type : "string"
       }
     }
   }
},

Схема интерфейса пользователя

'queues.bootStrapServers': {
   'ui:widget': 'CustomTextWidget',
   classNames: 'customwidth_48',
   'ui:options': { type: 'text', placeholder: 'Enter BootStrap Servers' },
 },

 {
   queues.bootStrapServers[0].hostUrl: "kafka://100.200.300.55:6251"
   queues.bootStrapServers[1].hostUrl: "kafka://100.200.300.56:6251"
   queues.bootStrapServers[2].hostUrl: "kafka://100.200.300.57:6251"
 }

Невозможно отобразить значение

1 Ответ

0 голосов
/ 25 июня 2019

Вот возможная структура вашей схемы:

'queues.bootStrapServers': {
   title: 'BootStrap Servers',
   type: 'array',
   items: [
     { 
     type : "object", 
     properties :{
       'hostUrl' : {
          type : "string"
       }
     }
   },
   {
     type : "object", 
     properties :{
       'hostUrl' : {
          type : "string"
       }
     }
   }
  ]
},
...