我有一个包含TinyMCE编辑器的项目。 对于拼写检查我使用Nanospell。 本地工作正常。
在我的服务器上(现场版),我总是得到那些红色的红色线条。 必须检查的语言是英语,这是默认语言。
当你google for nanospell时,你最终会得到一个tinymcespellcheck网站,其中显示了以下消息:
此网站位于较旧的基础设施上,将在不久的将来退役。 如果您是站点管理员,只需登录管理面板并迁移到新的V2基础架构即可。 如果您有任何疑问,请与我们联系,或阅读以下指南以了解更多信息。
nanospell不再工作还是我错过了设置?
我的tinymce init:
tinymce.init({
selector: "textarea#cn_Contents",
toolbar: "insertfile undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | forecolor backcolor",
plugins: "textcolor",
external_plugins: { "nanospell": "plugin.js" },
nanospell_server: "asp.net",
setup: function(editor) {
editor.on('focus', function(e) {
if (tinyMCE.activeEditor.getContent() == '<p>Enter your content</p>') {
tinyMCE.activeEditor.setContent('');
}
});
editor.on('blur', function (e) {
if (tinyMCE.activeEditor.getContent() == '') {
tinyMCE.activeEditor.setContent('<p>Enter your content</p>');
}
});
}
});