我正在学习 javascript 模块以及如何编写它们。我遇到了一个问题,即我不能 100% 确定我的模式是正确的。任何可能让我以后更容易的评论都会很好,但我的问题是我不确定如何正确使用原型。
我像这样使用我的模块:
var cm = CodeMirror.fromTextArea(document.getElementById("code"), {
lineNumbers: true,
matchBrackets: true,
mode: "text/x-csharp"
});
var adapt = new $.codeMirrorSignalRAdapter(cm, $.connection.codeHub);
但在我的adapter.prototype hubChange 中,this.silent 是未定义的。我想认为 var adapter = function(cm,hub) 是构造函数,我不知道如何从原型函数访问属性 self.[cm,hub,silent] 。
(function ($, window) {
"use strict";
if (typeof ($) !== "function") {
// no jQuery!
throw new Error("CodeMirrorAdapter: jQuery not found. Please ensure jQuery is referenced before the SignalR.js file.");
}
if (typeof ($.signalR) !== "function") {
throw new Error("CodeMirrorAdapter: SignalR is not loaded. Please ensure jquery.signalR-x.js is referenced before ~/signalr/hubs.");
}
var adapter = function (cm, hub) {
var self = this;
self.cm = cm;
self.hub = hub;
self.silent = false;
cm.on("change", function (_, change) { self.onChange(change); });
hub.client.Change = self.hubChange;
return self;
};
adapter.fn = adapter.prototype = {
init: function (cm, hub) {
},
onChange: function (change) {
if (!this.silent) {
this.hub.server.change(change)
.done(function () { })
.fail(function (ee) { alert(ee) });
}
},
hubChange: function (change) {
alert(this.silent);
this.silent = true;
this.cm.replaceRange(change.text[0], change.from);
this.silent = false;
},
};
$.codeMirrorSignalRAdapter = adapter;
}(window.jQuery, window));
除了这个关键字的问题之外,模块设计看起来还不错吗?