从媒体上传器获取缩略图的网址


8

我想从WordPress 3.5媒体上传器中选择图片。我可以使用以下代码获取图像URL,但它会获取完整尺寸的图像。我要获取缩略图网址,如何获取?

 var custom_uploader;
 $('.upload-image').click(function(e) {
        e.preventDefault();

        if (custom_uploader) {
            custom_uploader.open();
            return;
        }

        custom_uploader = wp.media.frames.file_frame = wp.media({
            title: 'Choose Image',
            button: {
                text: 'Choose Image'
            },
            multiple: false
        });

        //When a file is selected, grab the URL
        custom_uploader.on('select', function() {
            attachment = custom_uploader.state().get('selection').first().toJSON();
            var abc = attachment.url;    //this is full image url. 
            alert (abc);
        });

        custom_uploader.open(); 
    });

Answers:


8

您可以通过以下方式调试附件的结果:

console.log(attachment); 

如果缩略图大小可用,则可以使用进行检索:

 var thumb = attachment.sizes.thumbnail.url;
 alert(thumb);

这是一个很好的解决方案,但对以后的阅读者有一些改正:可以在attachment.attributes.sizes.thumbnail.url中找到该URL 。在尺寸上,还提供其他选项,例如mediummedium_largefull以及自定义尺寸。
AncientRo

0

通过我自己的研究发现了这个问题,最终开发出了我认为可能有价值的更丰富的解决方案。

如果您想知道用户选择的媒体大小的网址,那么以下代码(下面的完整jQuery代码)将为您做到这一点:

jQuery(function($) {
    // Bind to my upload butto
    $(document).on('click', 'a.custom-media-upload', function() {
        customUpload($(this));
        return false;
    });

    function customUpload(el) {
        formfield = $(el);
        custom_media = true;
        var _orig_send_attachment = wp.media.editor.send.attachment;
        wp.media.editor.send.attachment = function(props, attachment) {
            if ( custom_media ) {
                formfield = renderUpload(formfield, attachment, props);
            } else {
                return _orig_send_attachment.apply( this, [props, attachment] );
            }
        }

        wp.media.editor.open(1);
    }

    function renderUpload(field, attachment, props) {
        // This gets the full-sized image url
        var src = attachment.url;

        // Get the size selected by the user
        var size = props.size;

        // Or, if you'd rather, you can set the size you want to get:
        // var size = 'thumbnail'; // or 'full' or 'medium' or 'large'...

        // If the media supports the selected size, get it
        if (attachment.sizes[size]) {
            src = attachment.sizes[size].url;
        }

        // Do what you want with src here....
    }
});

-3

您必须调用服务器才能运行一些PHP。

$thumb_src = wp_get_attachment_image_src( $id, 'thumbnail' );

其中$ id是附件的ID

您的custom_uploader select函数中的attachment.attributes.id将为您提供值。您可以通过ajax调用将其发布回去,并以这种方式获取缩略图网址。


这是不正确的。
安迪·默瑟
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.