我正在使用CkFinder 3,在成功上传图片后,我需要能够在用户点击"选择"按钮:
目前我正在使用files:choose
,但我无法在cb事件中找到此信息。
知道怎么解决吗?感谢代码示例。
CKFinder.modal( {
connectorPath: 'https://api.mysite.com/lib/ckfinder/core/connector/php/connector.php',
resizeImages: false,
startupFolderExpanded: true,
chooseFiles: true,
width: 1000,
height: 800,
language: 'en',
onInit: function( finder ) {
finder.on( 'files:choose', function( evt ) {
} );
}
} );
答案 0 :(得分:8)
以files:choose
事件描述为例。您在evt.data.files
中选择了Backbone.Collection
files ImageInfo
。
棘手的部分是从command:send
服务器获取图像维度(使用file:getUrl
请求),因为它需要使用promises处理异步代码。
假设您只允许上传图片,示例代码如下:
// Listen to event.
finder.on( 'files:choose', function( evt ) {
// Iterate over the files collection.
evt.data.files.forEach( function( file ) {
// Send command to the server.
finder.request( 'command:send', {
name: 'ImageInfo',
folder: file.get( 'folder' ),
params: { fileName: file.get( 'name' ) }
} ).done( function( response ) {
// Process server response.
if ( response.error ) {
// Some error handling.
return;
}
// Log image data:
console.log( '-------------------' );
console.log( 'Name:', file.get( 'name' ) );
console.log( 'URL:', file.getUrl() );
console.log( 'Dimensions:', response.width + 'x' + response.height );
console.log( 'Size:', response.size + 'B' );
} );
} );
} )