以下のように修正してください。
// Text/Instructions
this.options.items.push({
"type": "text",
"title": "調査",
"content": "以下の質問項目をよく読み,あなたにもっとも当てはまる選択肢を選んでください。"
})
以下のように表示されます。
以下のように入力してください。「this.options.items.push」で「Page」コンテンツ内に追加することができます。
// Text/Instructions
this.options.items.push({
"type": "text",
"title": "調査",
"content": "以下の質問項目をよく読み,あなたにもっとも当てはまる選択肢を選んでください。"
})
// Multiple choice
this.options.items.push({
"required": true,
"type": "radio",
"options": [
{
"label": "あてはまらない",
"coding": "1"
},
{
"label": "ややあてはまらない",
"coding": "2"
},
{
"label": "どちらでもない",
"coding": "3"
},
{
"label": "ややあてはまる",
"coding": "4"
},
{
"label": "あてはまる",
"coding": "5"
}
],
"label": "1.わたしは犬が好きだ",
"name": "Q1",
"shuffle": false
})
以下のように表示されます。