私は backbone.js を初めて使用し、「ウィザード」タイプのプロセス (別名マルチステップ フォーム) を設計している問題に頭を悩ませています。このウィザードは、質問に対するユーザーの応答に応じてさまざまな画面分岐ロジックを処理し、ユーザーの進行に応じて各画面への応答を保存し、最後にすべてのフォーム応答 (すべてのステップ) を 1 つの大きなオブジェクトにシリアル化できる必要があります。 (おそらくJSON)。ウィザードの質問は年々変化するため、複数の同様のウィザードが同時に存在することをサポートできる必要があります。
画面の作成 (バックボーン フォームを使用) までの基本は理解しましたが、ユーザー入力を保存したいところまで来ましたが、それを行う最善の方法が思いつきません。私が見たほとんどの例には、特定のタイプのオブジェクト (例: Todo
) があり、それらのコレクション (例: TodoList
) を作成するだけですが、画面の種類が異なるため、Backbone.Model 定義のバッグが混在しているため、そうではありません。それほど単純ではないようです。ウィザードとそれに含まれる画面をインスタンス化し、ユーザーの応答を記録する方法についての指針はありますか?
それが役立つ場合は、ビューコードを使用してjsfiddleを投稿できます。これは、これまでのところ画面を前後に移動するだけです(ユーザー入力応答の記録や画面分岐はありません)。
var Wizard = Backbone.Model.extend({
initialize: function(options) {
this.set({
pathTaken: [0]
});
},
currentScreenID: function() {
return _(this.get('pathTaken')).last();
},
currentScreen: function() {
return this.screens[this.currentScreenID()];
},
isFirstScreen: function(screen) {
return (_(this.screens).first() == this.currentScreen());
},
// This function should be overridden by wizards that have
// multiple possible "finish" screens (depending on path taken)
isLastScreen: function(screen) {
return (_(this.screens).last() == this.currentScreen());
},
// This function should be overridden by non-trivial wizards
// for complex path handling logic
nextScreen: function() {
// return immediately if on final screen
if (this.isLastScreen(this.currentScreen())) return;
// otherwise return the next screen in the list
this.get('pathTaken').push(this.currentScreenID() + 1);
return this.currentScreen();
},
prevScreen: function() {
// return immediately if on first screen
if (this.isFirstScreen(this.currentScreen())) return;
// otherwise return the previous screen in the list
prevScreenID = _(_(this.get('pathTaken')).pop()).last();
return this.screens[prevScreenID];
}
});
var ChocolateWizard = Wizard.extend({
nextScreen: function() {
//TODO: Implement this (calls super for now)
// Should go from screen 0 to 1 OR 2, depending on user response
return Wizard.prototype.nextScreen.call(this);
},
screens: [
// 0
Backbone.Model.extend({
title : "Chocolate quiz",
schema: {
name: 'Text',
likesChocolate: {
title: 'Do you like chocolate?',
type: 'Radio',
options: ['Yes', 'No']
}
}
}),
// 1
Backbone.Model.extend({
title : "I'm glad you like chocolate!",
schema: {
chocolateTypePreference: {
title: 'Which type do you prefer?',
type: 'Radio',
options: [ 'Milk chocolate', 'Dark chocolate' ]
}
}
}),
//2
Backbone.Model.extend({
title : "So you don't like chocolate.",
schema: {
otherSweet: {
title: 'What type of sweet do you prefer then?',
type: 'Text'
}
}
})
]
});
wizard = new ChocolateWizard();
// I'd like to do something like wizard.screens.fetch here to get
// any saved responses, but wizard.screens is an array of model
// *definitions*, and I need to be working with *instances* in
// order to fetch
編集: 要求に応じて、(最終目標として) 次のように保存されたウィザードの JSON 戻り値を確認したいと思います。
wizardResponse = {
userID: 1,
wizardType: "Chocolate",
screenResponses: [
{ likesChocolate: "No"},
{},
{ otherSweet: "Vanilla ice cream" }
]
}