1

我正在尝试使用 Sharejs 制作一个协作文本编辑器,但我一开始就遇到了一些问题。

我从“入门”页面开始。我运行npm install share,然后使用./node_modules/share/bin/exampleserver. 这工作正常。

但是后来我尝试按照“运行服务器”部分中的步骤创建自己的小型应用程序。我编写了 app.js 文件和建议的 html,当我尝试运行它时,浏览器控制台给出 404 错误,说它找不到 socket.io.js:

GET http://localhost:8000/socket.io/socket.io.js 404 (Not Found)

然后我反复收到此错误:

GET http://localhost:8000/test?VER=8&MODE=init&zx=ktil5643g6cw&t=1 404 (Not Found) 

有没有人有任何建议或想法是什么原因造成的?我知道它可以工作,因为正如我之前提到的,预配置的示例在本地工作得很好,只是我在尝试创建新应用程序时不能正确配置某些东西。

谢谢。

4

1 回答 1

4

您可以在更改日志中看到以下内容:

client.open('hello', 'text', function(doc, error) {
  // ...
});

变成

client.open('hello', 'text', function(error, doc) {
  // ...
});

示例仍然包含过时的回调function(doc, error)。此外,将客户端上的 URL 更改为http://example.com:8000/channel

在我的情况下,最终版本是:

服务器

var connect = require('./node_modules/connect'),
    sharejs = require('./node_modules/share').server;

var server = connect(
    connect.logger(),
    connect.static(__dirname + '/public')
);
var options = {db:{type:'none'}}; // See docs for options. {type: 'redis'} to enable persistance.

// Attach the sharejs REST and Socket.io interfaces to the server
sharejs.attach(server, options);

server.listen(8000, function () {
    console.log('Server running at http://127.0.0.1:8000/');
});

客户

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
    <script src="http://ajaxorg.github.com/ace/build/src/ace.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="/channel/bcsocket.js"></script>
    <script src="/share/share.js"></script>
    <script src="/share/ace.js"></script>
    <script>
        $(document).ready(function() {
            var editor = ace.edit("editor");

            sharejs.open('hello', 'text', 'http://localhost:8000/channel', function (error, doc) {
                doc.attach_ace(editor);
            });
        });
    </script>
    <style>
        #editor {
            width: 200px;
            height: 100px;
        }
    </style>
</head>
<body>
<div id="editor"></div>
</body>
</html>
于 2013-04-17T05:52:04.857 回答