以下のスニペットを見てください。...
別の関数で再利用できる、ルートを生成する代わりに記述できる関数はありますか? もしかしてみたいなvar route = this.show.fullyQualifiedName
?
var services = {
'github.com': {
api: {
v2: {
json: {
repos: {
show: function(username, fn) {
var route = ...;
// route now == 'github.com/api/v2/json/repos/show'
route += '/' + username;
return $.getJSON('http://' + route).done(fn);
}
}
}
}
}
}
}