関数の定義とオブジェクトのインスタンス化の順序に問題があります。以下を参照してください: JSFiddle
今、アイデアをいじっているだけですが、この壁にぶつかり、問題に対する簡単な解決策があるかどうかわかりません。基本的に、別のオブジェクトにいくつかのメソッドを持つオブジェクトがありますが、この他のオブジェクトには最初のオブジェクトへの参照が含まれているため、インスタンス化/定義する順序に関係なく、どちらかがロードされていないためエラーが発生します:
var router = {
update: function(event, from, to) {
window.location.hash = "#/" + to;
$("back-btn").disabled = fsm.can("back"); // *** And here I am referencing fsm
$("next-btn").disabled = fsm.can("next");
},
location: window.location.hash.substring(2),
}
var fsm = StateMachine.create({
initial: "intro",
events: [
// Next events and where to route based on our page
{ name: "next", from: "intro", to: "getname" },
{ name: "next", from: "getname", to: "welcome" },
{ name: "next", from: "welcome", to: "why" },
// We can't go "back" from the initial route
{ name: "back", from: "getname", to: "intro" },
{ name: "back", from: "welcome", to: "getname" },
{ name: "back", from: "why", to: "welcome" } ],
callbacks: {
onintro : router.update, //*** Here I am referencing the router object
ongetname: router.update,
onwelcome: router.update,
onwhy : router.update
}
});
助けてくれてありがとう。