Survey_all_rows在SurveyMonkey API调查设计中的含义是什么?

问题描述 投票:0回答:1

在multiple_choice Survey Monkey问题中,apply_all_rows的含义是什么? (该定义是通过SurveyMonkey v3 API检索的;我无法访问原始设计。)我认为apply_all_rows对矩阵问题有意义。

我认为这意味着每个复选框都会获得自己的“其他”文本字段,但文本响应具有来自“其他”部分的ID,并且不会每行重复。另外,在设计我自己的调查时,我找不到一种方法来使Checkboxes问题有一个Other each复选框。

"sorting": null,
"family": "multiple_choice",
"subtype": "vertical",
"required": null,
"answers": {
  "other": {
    "id": "1569506482",
    "visible": true,
    "is_answer_choice": false,
    "apply_all_rows": true,
    "text": "If you answered yes to any of these, please describe:",
    "position": 0,
    "num_chars": 50,
    "error_text": "",
    "num_lines": 1
  },
  "choices": [
    {
      "visible": true,
      "text": "Option A",
      "position": 1,
      "id": "1569506411"
    },
    {
      "visible": true,
      "text": "Option B",
      "position": 2,
      "id": "1569506475"
    }
  ]
},
surveymonkey
1个回答
1
投票

你是对的,apply_all_rows只影响矩阵类型的问题,如果它被设置为true,你在网格的每一行得到另一个选项,否则在问题的最后只有一个其他选项。

我不知道任何其他问题类型都可以设置为true(可能只通过API)。但对于正常的多选类型问题,该选项意味着什么。

© www.soinside.com 2019 - 2024. All rights reserved.