使用opa的tinymce编辑器

发布于 2024-12-07 12:22:54 字数 527 浏览 0 评论 0原文

import stdlib.core.web.resource

Editor = {{
  base_url = Resource.base_url?""

  load = <script type="text/javascript" src="{base_url}/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>

  @client init()=
     ((%% editor.init %%)())

  @client getContent(dom : string)=
     ((%% editor.getContent %%)(dom))

  tiny_mce = @static_resource_directory("tinymce")

}}

运行上面的代码时,我收到以下错误

错误 文件“editor.opa”,第 20 行,字符 6-25,(20:6-20:25 | 339-358) 无法输入绕过 editor_init。

有人可以帮我吗?

import stdlib.core.web.resource

Editor = {{
  base_url = Resource.base_url?""

  load = <script type="text/javascript" src="{base_url}/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>

  @client init()=
     ((%% editor.init %%)())

  @client getContent(dom : string)=
     ((%% editor.getContent %%)(dom))

  tiny_mce = @static_resource_directory("tinymce")

}}

while running this above code I'm getting below error

Error
File "editor.opa", line 20, characters 6-25, (20:6-20:25 | 339-358)
Unable to type bypass
editor_init.

can anyone help me please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

极度宠爱 2024-12-14 12:22:54

我认为您之前没有创建旁路。

第一次使用:

opa-plugin-builder editor.js

使用这样的文件“editor.js”:

##register init:  -> void
##args()
{
    tinyMCE.init({
    mode: "textareas",
    theme: "advanced"
    });
}

##register getContent: string -> string
##args(a)
{
    return tinyMCE.get(a).getContent();
}

然后你必须获得一个名为 editor.opp 的文件夹

现在要编译 editor.opa,你必须调用 editor.opp

ex :

opa editor.opp editor.opa

Hope它有帮助:)

I think you had not created the bypass before.

First use :

opa-plugin-builder editor.js

With a file "editor.js" like that :

##register init:  -> void
##args()
{
    tinyMCE.init({
    mode: "textareas",
    theme: "advanced"
    });
}

##register getContent: string -> string
##args(a)
{
    return tinyMCE.get(a).getContent();
}

And then you must get a folder named editor.opp

And now to compile editor.opa, you must call editor.opp

ex :

opa editor.opp editor.opa

Hope it helps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文