-1

我正在构建一个单页问卷应用程序,但我不确定为问题构建数组的正确方法是什么。另外,以这种方式混合问题类型是不好的做法吗?(单选,同一阵列中的多选?)基本上,我仍在尝试了解我所见过的两种基本方法的优缺点。

选项1:

var hygiene = [

  {
    pageheader: "Self-Care"
  }

  {
    q: "When was your last shower?",
    choicetype: "radio",
    a1: "Today",
    a2: "Yesterday",
    a3: "Two days ago",
    a4: "I don't know"
  }

  {
    q: "How much do you weigh today?",
    choicetype: "keypad"
  }

  {
    q: "Do you take any medications?",
    choicetype: "radio",
    a1: "Yes",
    a2: "No"
  }

  {
    q: "Which medications?",
    choicetype: "multiselect",
    a1: "Zostavax",
    a2: "Percocet",
    a3: "Actemra",
    a4: "Cimzia",
    a5: "Relprevv"
  }

];

选项 2:

var hygiene = {

  pageheader: "Self-Care",

  question1: [
    "When was your last shower?", "radio", "Today", "Yesterday",
    "Two days ago", "I don't know"
  ],

  question2: [
    "How much do you weigh today?", "keypad"
  ],

  question3: [
    "Do you take any medications?", "radio", "Yes", "No"
  ],

  question4: [
    "Which medications?", "multiselect", "Zostavax", "Percocet",
    "Actemra", "Cimzia", "Relprevv"
  ]

};
4

2 回答 2

7

我的建议是不要使用它们中的任何一个,而是以下:

var hygiene = {

    pageheader: "Self-Care",

    questions: [

        {
            question: "When was your last shower?",
            choicetype: "radio",
            answers: [
                "Today",
                "Yesterday",
                "Two days ago",
                "I don't know"
            ]
        },

        {
            question: "How much do you weigh today?",
            choicetype: "keypad"
        },

        {
            question: "Do you take any medications?",
            choicetype: "radio",
            answers: [
                "Yes",
                "No"
            ]
        },

        {
            question: "Which medications?",
            choicetype: "multiselect",
            answers: [
                "Zostavax",
                "Percocet",
                "Actemra",
                "Cimzia",
                "Relprevv"
             ]
         }
    ]
}
于 2012-11-14T21:21:10.943 回答
1

选项 1 比选项 2 好得多,因为您指定了变量并为每个字符串指定了有意义的名称,以便稍后在代码中使用。

如果您有大量问卷,这取决于您以后代码的可读性。如果你在一个文件中有 100 个,你更喜欢 1 个还是 2 个?

于 2012-11-14T21:16:21.173 回答