0. 冒頭の教示部分を作る

以下のように修正してください。

// Text/Instructions
this.options.items.push({
          "type": "text",
           "title": "調査",
           "content": "以下の質問項目をよく読み,あなたにもっとも当てはまる選択肢を選んでください。"
        })

Untitled

以下のように表示されます。

Untitled

1. 「Multiple choice型アンケート」の表示

以下のように入力してください。「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
        })

Untitled

以下のように表示されます。

Untitled