Nicedit编辑器图片上传

时间:2013-04-25 10:39:57

标签: javascript nicedit

我在我的网站上使用“niceEdit”编辑器无论如何它的工作魅力,但现在当我试图将图像“上传”到编辑器时,我得到了这个按摩。

“上传图片时出错(将图片发送到imageshack失败。”

我找了它,发现有人用niceuplod文件进行了更改,你也必须得到api密钥。

所以我改变了从以下方面调用编辑器的方式:

bkLib.onDomLoaded(function() { 
           nicEditors.allTextAreas(new nicEditor({maxHeight : 250}).panelInstance('contect'));

         });

        $('form').submit(function(){
nicEditors.findEditor('contect').saveContent();
//console.log(nicEditors.findEditor('contect').getContent());

        });



to this one 
bkLib.onDomLoaded(function() {
    new nicEditor({
        buttonList : ['bold','italic','underline','upload'],
        iconsPath:'nicEditorIcons.gif',
        uploadURI : 'nicUpload.php', 
    }).panelInstance('contect');
});

then i got the following error 
top.nicUploadButton is undefined
and in my console the following 
TypeError: r.removeInstance is not a function

r.removeInstance(e);

那么为什么你认为我有这个问题,我应该从哪里开始寻找?

2 个答案:

答案 0 :(得分:0)

您必须拥有自己的网站API代码 然后在niceUpload文件中更改它

你会在代码的开头

中使用它

答案 1 :(得分:0)

http://wiki.nicedit.com/w/page/515/Configuration%20Options

寻找uploadURI选项,它会对你有用,同样适合我。