我是ckeditor的新手。 我正在尝试创建一个两个选项卡的对话框,允许用户浏览第一个选项卡中的上载的文件,并允许用户在第二个选项卡中上载的文件。 我正在使用API和SDK作为指南。 我的问题在于,当我尝试上传文件时,在filebrowser函数中应发出警报。但就我而言,我在文件浏览器上有了localhost页面。
{
id: 'tab2',
label: 'Carica',
title: 'Carica documento',
elements: [
{
type: 'file',
label: editor.lang.common.upload,
labelLayout: 'vertical',
id: 'upload'
},
{
type: 'fileButton',
label: editor.lang.common.uploadSubmit,
id: 'id3',
filebrowser: {
action: 'upLoad',
params: { type: 'Files', currentFolder: '/folder/' },
target: 'tab1:id1',
onSelect: function( fileUrl, errorMessage ) {
alert( 'The url of uploaded file is: ' + fileUrl + '\nerrorMessage: ' + errorMessage );
}
},
'for': [ 'tab2', 'upload' ]
}
]
}
感谢您提供的任何帮助! 阿莱西奥