如何用epiceditor打开文件?

时间:2013-08-07 17:28:18

标签: javascript epiceditor

我有以下文件结构

enter image description here

在content.php中,我有以下JS代码

        var file = "http://2sense.net/blog/posts/my-second-post.md"
        var opts = {
          basePath: "http://2sense.net/blog/posts/",
          container: 'epiceditor',
          textarea: null,
          basePath: 'epiceditor',
          clientSideStorage: true,
          localStorageName: 'epiceditor',
          useNativeFullscreen: true,
          parser: marked,
          file: {
            name: 'epiceditor',
            defaultContent: '',
            autoSave: 100
          },
          theme: {
            base: '/themes/base/epiceditor.css',
            preview: '/themes/preview/preview-dark.css',
            editor: '/themes/editor/epic-dark.css'
          },
          button: {
            preview: true,
            fullscreen: true
          },
          focusOnLoad: false,
          shortcut: {
            modifier: 18,
            fullscreen: 70,
            preview: 80
          },
          string: {
            togglePreview: 'Toggle Preview Mode',
            toggleEdit: 'Toggle Edit Mode',
            toggleFullscreen: 'Enter Fullscreen'
          }
        }
        window.editor = new EpicEditor(opts);
        editor.load(function () {
          console.log("Editor loaded.")
        });

        $("#openfile").on("click", function() {
            console.log("openfile");
            editor.open(file);
            editor.enterFullscreen();
        })

当我尝试使用“editor.open(file);”打开文件时什么都不会发生。我已经确认按下按钮时会事先触发事件。 你知道如何解决这个问题,或者你有一个真实的例子...... epiceditor网站上API的文档并没有说太多。

干杯

1 个答案:

答案 0 :(得分:1)

客户端JS无法打开桌面文件(或者,不容易或跨浏览器)。这将是与File API一起使用的一个很好的功能,但是没有实现。 EpicEditor存储"文件"在localStorage中。当您执行editor.open('foo')时,您基本上正在执行:JSON.parse(localStorage['epiceditor'])['foo'].content。这已被问过几次,所以我做了一张票,以便在文档中更清楚。

https://github.com/OscarGodson/EpicEditor/issues/276

这有帮助吗?

P.S。我们随时欢迎提供对您有意义的文档的拉取请求:)