미디어 모달에서 새로 고침을 트리거하는 방법


12

미디어 모달에 새 탭을 추가하는 플러그인을 개발 중이며 첨부 파일 탭의 새로 고침을 트리거하여 새로 추가 된 첨부 파일을 표시하는 방법을 알아야합니다. 이것은 내가 사용하는 코드입니다.

wp.media.view.Toolbar.Custom = wp.media.view.Toolbar.extend({
    initialize: function() {
        _.defaults( this.options, {
            event: 'custom_event',
            close: false,
            items: {
                custom_event: {
                    text: wp.media.view.l10n.customButton,
                    style: 'primary',
                    priority: 80,
                    requires: false,
                    click: this.addAttachment
                }
            }
        });

        wp.media.view.Toolbar.prototype.initialize.apply( this, arguments );
    },

    // triggered when the button is clicked
    addAttachment: function(){
        this.controller.state().addAttachment();
        this.controller.setState( 'insert' );
        // I NEED TO TRIGGER A REFRESH OF THE ATTACHMENTS TAB HERE
    }
});

도움을 주시면 감사하겠습니다. 미디어 모달 설명서가 거의 없습니다.

감사


IIRC는 단지 백본 / 언더 스코어 뷰입니다. 즉, 모델을 업데이트 할 때 "ModelView"가 트리거해야하므로 뷰 자체를 업데이트해야합니다.
카이저

글쎄,이 this.controller.state().addAttachment()함수는를 사용하는 AJAX 호출 이므로이 AJAX 호출 wp.media.post()후 가상의 "모델 업데이트"이벤트를 트리거해야합니다. 어떤 아이디어?
leemon

"모든 아이디어?" -현재는 아닙니다. 이것은 코어를 읽는 데 꽤 많은 시간을 투자해야 할 부분입니다 (지금은 가지고 있지 않습니다). 의견 정보 : MarkDown을 사용할 수 있습니다 ( "댓글 추가"버튼 아래의 "도움말"참조).
카이저

답변:


2

이 링크를 확인하십시오 https://codex.wordpress.org/Javascript_Reference/wp.media

jQuery(function($){

  // Set all variables to be used in scope
  var frame,
      metaBox = $('#meta-box-id.postbox'), // Your meta box id here
      addImgLink = metaBox.find('.upload-custom-img'),
      delImgLink = metaBox.find( '.delete-custom-img'),
      imgContainer = metaBox.find( '.custom-img-container'),
      imgIdInput = metaBox.find( '.custom-img-id' );

  // ADD IMAGE LINK



addImgLink.on( 'click', function( event ){

    event.preventDefault();

    // If the media frame already exists, reopen it.
    if ( frame ) {
      frame.open();
      return;
    }

    // Create a new media frame
    frame = wp.media({
      title: 'Select or Upload Media Of Your Chosen Persuasion',
      button: {
        text: 'Use this media'
      },
      multiple: false  // Set to true to allow multiple files to be selected
    });


    // When an image is selected in the media frame...
    frame.on( 'select', function() {

      // Get media attachment details from the frame state
      var attachment = frame.state().get('selection').first().toJSON();

      // Send the attachment URL to our custom image input field.
      imgContainer.append( '<img src="'+attachment.url+'" alt="" style="max-width:100%;"/>' );

      // Send the attachment id to our hidden input
      imgIdInput.val( attachment.id );

      // Hide the add image link
      addImgLink.addClass( 'hidden' );

      // Unhide the remove image link
      delImgLink.removeClass( 'hidden' );
    });

    // Finally, open the modal on click
    frame.open();
  });


  // DELETE IMAGE LINK
  delImgLink.on( 'click', function( event ){

    event.preventDefault();

    // Clear out the preview image
    imgContainer.html( '' );

    // Un-hide the add image link
    addImgLink.removeClass( 'hidden' );

    // Hide the delete image link
    delImgLink.addClass( 'hidden' );

    // Delete the image id from the hidden input
    imgIdInput.val( '' );

  });

});

1

시도해보십시오 :

wp.media.editor.get(wpActiveEditor).views._views[".media-frame-content"][0].views._views[""][1].collection.props.set({ignore:(+(new Date()))})

더 쉬운 방법이 있어야하지만 그 동안 저에게 효과적입니다!

더 나은 방법 :

wp.media.frame.content.get('gallery').collection.props.set({‌​ignore: (+ new Date())});, 

이 경우 갤러리 탭을 새로 고칩니다.

위의 코드를 모두 시도하고 가장 적합한 코드를 찾으십시오.


1
이것은 나에게 도움이되었다! 감사.
Siddhesh Shirodkar

1
예, 이것도 저에게 효과적이었습니다.
Amol Bhandari SJ
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.