我有以下代码:

 var examples = {
    'style': {
        create: function (div, ref) {
            var codeMirror = CodeMirror(div, {
                lineNumbers: true,
                mode: 'css'
            });

            this.firepad = Firepad.fromCodeMirror(ref, codeMirror);

            var self = this;
            this.firepad.on('ready', function () {
                if (self.firepad.isHistoryEmpty()) {
                    self.firepad.setText('.red {color: red;}');
                }
            });
        },
        dispose: function () {
            this.firepad.dispose();
        }
    }
};


现在通常我很不幸地会去codeMirror.getValue()获取CodeMirror实例的内容,但我不知道如何访问对象中函数的变量(我什至说得对吗?)

我试过examples.style.getValue(),但是当然会返回错误。

有任何想法吗?

最佳答案

好吧,你不能。不能在函数外部访问局部变量。

您必须使用Firepad API来获取值:

var text = examples.style.firepad.getText();
// or
var html = examples.style.firepad.getHtml();


或者,您可以将CodeMirror实例分配给属性并使用getValue

但是,为了方便起见,您可能想向该对象添加另一个方法:

getText: function() {
  return this.firepad.getText();
}

09-19 13:04