JSON Editor widget は、JSON 構造を表示、編集、フォーマット、検証する方法を提供する WireCloud ウィジェットです。
ワイヤリング
入力エンドポイント
- Input: 編集するデータ
- Configuration: JSON Editor で使用する設定。 現在、’readonly’ オプションのみをサポートしています
1 2 3 |
{ readonly: [["id"], ["type"], ["key", "subkey"]] } |
出力エンドポイント
- Output: 変更されたデータ
入力データ例
出力例
サンプルデータ
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
{ "id": "line001", "type": "line", "location": { "type": "LineString", "coordinates": [ [ 139.702629, 35.671282 ], [ 139.701519, 35.65795 ], [ 139.709852, 35.646562 ] ] } } |
関連情報
WireCloud widget and operatorWireCloud では、ウィジェットとオペレータと呼ばれる機能部品を組み合わせることで、Web アプリケーションやダッシュボードを作成...