0

我创建了一个 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 可以正常工作。

4

2 回答 2

0

难道 isHistoryEmpty() 代码没有为您运行仅仅是因为它曾经工作,现在历史记录不为空?

$ curl  https://mkaminsky.firebaseio.com/.json 
{"users":{"-J6J90xrR-D-XC6WE23F":{"color":"#d5b3ff"}},"history":{"A0":{"a":"-J6HUBET5icmC-yXAkJb","o":["//hello"]}}}

尝试清除您的 firebase 或为 firepad 文档使用新的命名空间。测试新命名空间的最简单方法是

Firepad.fromCodeMirror(firepadRef.push(), codeMirror);

它始终为我运行 isHistoryEmpty() 分支(在https://cben-sandbox.firebaseio.com/、Chrome 和 Firefox 上测试)。

于 2013-10-20T04:55:41.780 回答
0

它很可能缺少 CSS 格式。根据文档,添加以下 CSS 规则:

.firepad {
  width: 700px;
  height: 450px;
  background-color: #f62; /* dark orange background */
}

CSS 样式之前 CSS 样式 之后CSS样式之前 CSS样式之后

于 2017-01-10T11:17:53.713 回答