更改 ShareJS 中的默认文本

Change default text in ShareJS

情况:我有一个网站,用 PHP & mySQL 编写,用于文档 creating/sharing。现在我需要在网站上添加一些协作功能,所以决定使用 shareJS(使用默认的 ace 编辑器)。

几乎所有工作正常,但我无法在编辑器中设置默认文本,因为它从默认的 redis 数据库中获取数据。是的,我可以尝试在 redis 数据库中重写数据或通过我的 mySQL 数据库更改它,但我想转义它。

在客户端部分,我尝试删除所有文本并设置新的

// delete text which come from node server
var nodeText = doc.getText();
var nodeTextRows = nodeText.split("\n");
nodeTextRows.forEach(function(text, i, arr) {
    var locIDX = i+1;
    doc.del(locIDX, text.length);
    console.log("Delete: " + locIDX + " " + text + " " + text.length);
});


// insert text from DB into editor
var textRows = text.split("\n");
textRows.forEach(function(text, i, arr) {
    var locIDX = i+1;
    doc.insert(locIDX, text);
    console.log("Insert: " + locIDX + " " + text);
});

但由于这个 shareJS 代码,它不起作用

if editorText != otText
    console.error "Text does not match!"
    console.error "editor: #{editorText}"
    console.error "ot: #{otText}"
    # Should probably also replace the editor text with the doc snapshot.
, 0

所以我的错误信息是: 文本不匹配 编辑:{空字符串} ot: {一些垃圾,由上面的输入和代码生成}

也许我做错了。

这是我在源代码中找到的未记录的函数:

doc.attach_ace(editor, true);

第二个变量表示保留编辑器内容,以便您可以在编辑器中设置自己的文本。

希望以上内容有用。