我正在尝试为atlassian-connect.json
文件中指定的参数添加默认值。
{"identifier": "title",
"name": {
"value": "Title"
},
"type": "string",
"required": true,
"multiple": false}
如何为该字段指定默认值?
答案 0 :(得分:1)
像这样使用defaultValue
:
{"identifier": "title",
"name": {
"value": "Title"
},
"type": "string",
"required": true,
"multiple": false,
"defaultValue": "My default title"
}