使用opa的tinymce编辑器
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您之前没有创建旁路。
第一次使用:
opa-plugin-builder editor.js
使用这样的文件“editor.js”:
然后你必须获得一个名为 editor.opp 的文件夹
现在要编译 editor.opa,你必须调用 editor.opp
ex :
Hope它有帮助:)
I think you had not created the bypass before.
First use :
opa-plugin-builder editor.js
With a file "editor.js" like that :
And then you must get a folder named editor.opp
And now to compile editor.opa, you must call editor.opp
ex :
Hope it helps :)