我创建了一个 Firebase ( https://mkaminsky.firebaseio.com/ ),并尝试使用 Firepad 创建一个代码协作工具。我创建了这个 html 文件,如示例中所述(https://github.com/firebase/firepad/blob/master/examples/code.html)。
<!doctype html>
<!-- See http://www.firepad.io/docs/ for detailed embedding docs. -->
<html>
<head>
<meta charset="utf-8" />
<script src="https://cdn.firebase.com/v0/firebase.js"></script>
<script src="codemirror/lib/codemirror.js"></script>
<script src="codemirror/mode/javascript/javascript.js"></script>
<link rel="stylesheet" href="codemirror/lib/codemirror.css" />
<script src="firepad.js"></script>
<link rel="stylesheet" href="firepad.css" />
<style>
html { height: 100%; }
body { margin: 0; height: 100%; position: relative; }
.firepad {
position: absolute; left: 0; top: 0; bottom: 0; right: 0; height: auto;
}
</style>
</head>
<body>
<button type="button">Test</button>
<div id="firepad-container"></div>
<script>
//// Initialize Firebase.
var firepadRef = new Firebase('https://mkaminsky.firebaseio.com/');
//// Create CodeMirror (with line numbers and the JavaScript mode).
var codeMirror = CodeMirror(document.getElementById('firepad-container'), {
lineNumbers: true,
mode: 'javascript'
});
//// Create Firepad.
var firepad = Firepad.fromCodeMirror(firepadRef, codeMirror);
//// Initialize contents.
firepad.on('ready', function() {
if (firepad.isHistoryEmpty()) {
firepad.setText('//hello');
}
});
</script>
</body>
</html>
但是,此代码无法正常工作。它显示代码编辑器,完成语法高亮,但不执行“setText('//hello');” 方法。放置在其位置的任何其他命令也不起作用。
此外,该按钮不显示在 html 页面中。
我已经测试并验证了 Firebase 可以正常工作。