、私はこれは私が経験マリオネットのアプリを開発するが、コード上でいる
define(['jquery', 'components/BaseComponent', 'bootstrap'], function(
$, BaseComponent, bootstrap
) {
'use strict';
return BaseComponent.extend({
initialize: function(options) {
BaseComponent.prototype.initialize.call(this, options); // what is this man?
this.widgetOptions = $.extend({}, options); // what is this man?
return this; // what is this man?
},
render: function() {
BaseComponent.prototype.render.call(this); //again?
return this; //again?
}
});
});
はまだ私を混同しないものと困惑しています。ドキュメンテーションもこれをやった人も残っていません。
これらのすべては、基本的なJavaScriptのパターンです。それは他のライブラリとはまったく無関係です。 –
実際、多くのプログラミング言語では、連鎖としてのJavaScriptにのみ限定されるものではありません。 –