Backbone と Parse を使用して調査 Web サイトを作成する方法を学んでいます。Stack Overflow で同様の質問を見たことがあります。しかし、私の質問は少し異なります。この Web サイトでは、ユーザーは独自の調査を行うことができます。今のところ、ユーザーが投稿できる質問には、複数選択と自由回答の 2 種類があるとします。次のように、Question というバックボーン モデルを作成しました。
//質問モデル
//----------------------
var Question = Parse.Object.extend(
"Question", {
//Default attributes for the todo
defaults: {
content: "What's your name",
type: "free_response",
choices: []
},
initialize: function() {
if (!this.get("content")) {
this.set({"content": this.defaults.content});
}
if (!this.get("type")) {
this.set({"type": this.defaults.type});
}
if (!this.get("choices")) {
this.set({"choices": this.defaults.choices});
}
}
});
そこで、質問を表示できる QuestionView も作成したいと思います。ただし、複数の選択肢と自由回答は別の方法で表示する必要があります。では、タイプに応じて質問を異なる方法で表示するにはどうすればよいでしょうか? ありがとう。