CKFinder如何在选择图像时获取尺寸URL和尺寸(宽度/高度)(文件:选择)?

时间:2016-02-08 11:53:23

标签: javascript ckeditor ckfinder

我正在使用CkFinder 3,在成功上传图片后,我需要能够在用户点击"选择"按钮:

  • 文件名/ ID
  • URL
  • 原始图像的宽度和高度

目前我正在使用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 ) {
            } );
        }
    } );

1 个答案:

答案 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' );
        } );
    } );
} )

如果您使用任何远程后端,例如我们的Dropbox,您可能需要使用enter image description here请求来获取文件的网址。