<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;</provider_name><provider_url>https://datarecovery.ping.fm/zh/</provider_url><author_name>zamozhnii</author_name><author_url>https://datarecovery.ping.fm/zh/</author_url><title>&#x5982;&#x4F55;&#x89E3;&#x51B3;WD Passport&#x786C;&#x76D8;&#x5728;Mac&#x4E0A;&#x65E0;&#x6CD5;&#x663E;&#x793A;&#x7684;&#x95EE;&#x9898;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="RwEQa8anCv"&gt;&lt;a href="https://datarecovery.ping.fm/zh/wd-passport-not-showing-up-mac/"&gt;&#x5982;&#x4F55;&#x4FEE;&#x590D;WD Passport&#x5728;&#x60A8;&#x7684;Mac&#x4E0A;&#x65E0;&#x6CD5;&#x663E;&#x793A;&#x7684;&#x95EE;&#x9898;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://datarecovery.ping.fm/zh/wd-passport-not-showing-up-mac/embed/#?secret=RwEQa8anCv" width="600" height="338" title="&#x201C;&#x5982;&#x4F55;&#x4FEE;&#x590D;WD Passport&#x5728;&#x60A8;&#x7684;Mac&#x4E0A;&#x65E0;&#x6CD5;&#x663E;&#x793A;&#x7684;&#x95EE;&#x9898;&#x201D; &#x2014; &#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;" data-secret="RwEQa8anCv" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * This file cannot have ampersands in it. This is to ensure
 * it can be embedded in older versions of WordPress.
 * See https://core.trac.wordpress.org/changeset/35708.
 */
(function ( window, document ) {
	'use strict';

	var supportedBrowser = false,
		loaded = false;

		if ( document.querySelector ) {
			if ( window.addEventListener ) {
				supportedBrowser = true;
			}
		}

	/** @namespace wp */
	window.wp = window.wp || {};

	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		if ( ! data ) {
			return;
		}

		if ( ! ( data.secret || data.message || data.value ) ) {
			return;
		}

		if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			/* Resize the iframe on request. */
			if ( 'height' === data.message ) {
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			}

			/* Link to a specific URL on request. */
			if ( 'link' === data.message ) {
				sourceURL = document.createElement( 'a' );
				targetURL = document.createElement( 'a' );

				sourceURL.href = source.getAttribute( 'src' );
				targetURL.href = data.value;

				/* Only follow link if the protocol is in the allow list. */
				if ( ! allowedProtocols.test( targetURL.protocol ) ) {
					continue;
				}

				/* Only continue if link hostname matches iframe's hostname. */
				if ( targetURL.host === sourceURL.host ) {
					if ( document.activeElement === source ) {
						window.top.location.href = data.value;
					}
				}
			}
		}
	};

	function onLoad() {
		if ( loaded ) {
			return;
		}

		loaded = true;

		var isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),
			isIE11 = !!navigator.userAgent.match( /Trident.*rv:11\./ ),
			iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			iframeClone, i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substr( 2, 10 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/* Remove security attribute from iframes in IE10 and IE11. */
			if ( ( isIE10 || isIE11 ) ) {
				iframeClone = source.cloneNode( true );
				iframeClone.removeAttribute( 'security' );
				source.parentNode.replaceChild( iframeClone, source );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	if ( supportedBrowser ) {
		window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
		document.addEventListener( 'DOMContentLoaded', onLoad, false );
		window.addEventListener( 'load', onLoad, false );
	}
})( window, document );
&lt;/script&gt;
</html><thumbnail_url>https://datarecovery.ping.fm/wp-content/uploads/2024/03/How-to-Fix-a-WD-Passport-Not-Showing-Up-on-Your-Mac-Chinese.jpg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>731</thumbnail_height><description>&#x5982;&#x4F55;&#x4FEE;&#x590D;&#x5728; Mac &#x4E0A;&#x672A;&#x663E;&#x793A;&#x7684; WD Passport Mac &#x7535;&#x8111;&#x65E0;&#x6CD5;&#x8BC6;&#x522B; WD Passport &#x786C;&#x76D8;&#x53EF;&#x80FD;&#x4F1A;&#x8BA9;&#x4EBA;&#x975E;&#x5E38;&#x6CAE;&#x4E27;&#xFF0C;&#x5C24;&#x5176;&#x662F;&#x5F53;&#x91CC;&#x9762;&#x4FDD;&#x5B58;&#x7740;&#x91CD;&#x8981;&#x6570;&#x636E;&#x65F6;&#x3002;&#x4F5C;&#x4E3A;&#x4E00;&#x4E2A;&#x906D;&#x9047;&#x8FC7;&#x8FD9;&#x79CD;&#x60C5;&#x51B5;&#x7684;&#x53D7;&#x5BB3;&#x8005;&#xFF0C;&#x6211;&#x4E0D;&#x5F97;&#x4E0D;&#x5C1D;&#x8BD5;&#x5404;&#x79CD;&#x7591;&#x96BE;&#x6742;&#x75C7;&#x7684;&#x89E3;&#x51B3;&#x65B9;&#x6CD5;&#x3002;&#x89E3;&#x51B3;&#x8FD9;&#x4E2A;&#x95EE;&#x9898;&#x9700;&#x8981;&#x6709;&#x6B65;&#x9AA4;&#x7684;&#x64CD;&#x4F5C;&#xFF0C;&#x6709;&#x65F6;&#x8FD8;&#x9700;&#x501F;&#x52A9;&#x4E13;&#x95E8;&#x7684;&#x5DE5;&#x5177;&#x5982;&#x7528;&#x4E8E;&#x6570;&#x636E;&#x6062;&#x590D;&#x7684; Disk Drill&#x3002;&#x9664;&#x4E86;&#x786C;&#x4EF6;&#x95EE;&#x9898;&#xFF0C;&#x8FD9;&#x4E9B;&#x662F;&#x660E;&#x663E;&#x7684;&#x5916;&#x90E8;&#x786C;&#x76D8;&#x6545;&#x969C;&#x7684;&#x8FF9;&#x8C61;&#x4E4B;&#x5916;&#xFF0C;&#x8F6F;&#x4EF6;&#x4E0D;&#x4E00;&#x81F4;&#x4E5F;&#x53EF;&#x80FD;&#x5BFC;&#x81F4;&#x5B58;&#x50A8;&#x8BBE;&#x5907;&#x65E0;&#x6CD5;&#x88AB;&#x68C0;&#x6D4B;&#x5230;&#x3002; 1 &#x5E38;&#x89C1;&#x60C5;&#x51B5;&#xFF1A; &#x610F;&#x5916;&#x65AD;&#x5F00;&#x8FDE;&#x63A5; &#x1F440; &#x6BCF;&#x5F53;WD Passport &#x786C;&#x76D8;&#x7A81;&#x7136;&#x8FDE;&#x63A5;/&#x65AD;&#x5F00;&#x65F6;&#xFF0C;&#x53EF;&#x80FD;&#x4F1A;&#x7531;&#x4E8E;&#x672A;&#x5B8C;&#x6210;&#x7684;&#x5904;&#x7406;&#x6216;&#x6587;&#x4EF6;&#x4F20;&#x8F93;&#x5BFC;&#x81F4; Mac &#x7535;&#x8111;&#x8BC6;&#x522B;&#x51FA;&#x73B0;&#x95EE;&#x9898;&#x3002; &#x4E0D;&#x5F53;&#x5F39;&#x51FA;&#x4E5F;&#x53EF;&#x80FD;&#x5BFC;&#x81F4;&#x786C;&#x76D8;&#x5728;&#x518D;&#x6B21;&#x8FDE;&#x63A5;&#x65F6;&#x53D8;&#x5F97;&#x65E0;&#x54CD;&#x5E94;&#x6216;&#x65E0;&#x6CD5;&#x8BC6;&#x522B;&#x3002; &#x786C;&#x76D8;&#x683C;&#x5F0F;&#x635F;&#x574F; &#x1F9F1; &#x6709;&#x65F6;&#xFF0C;WD Passport &#x786C;&#x76D8;&#x7684;&#x6587;&#x4EF6;&#x683C;&#x5F0F;&#x53EF;&#x80FD;&#x5DF2;&#x635F;&#x574F;&#x6216;&#x4E0E; macOS &#x4E0D;&#x517C;&#x5BB9;&#xFF0C;&#x4ECE;&#x800C;&#x65E0;&#x6CD5;&#x88AB;&#x8BC6;&#x522B;&#x3002; &#x4E0E;&#x4E0D;&#x540C;&#x64CD;&#x4F5C;&#x7CFB;&#x7EDF;&#x4EA4;&#x53C9;&#x4F7F;&#x7528;&#x4E14;&#x6CA1;&#x6709;&#x9002;&#x5F53;&#x683C;&#x5F0F;&#x5316;&#x53EF;&#x80FD;&#x4F1A;&#x5BFC;&#x81F4;&#x8FD9;&#x79CD;&#x95EE;&#x9898;&#x3002; USB &#x7AEF;&#x53E3;&#x6216;&#x6570;&#x636E;&#x7EBF;&#x6545;&#x969C; &#x1F6AB; &#x4E00;&#x4E2A;&#x6709;&#x7F3A;&#x9677;&#x7684; USB &#x7AEF;&#x53E3;&#x6216;&#x635F;&#x574F;&#x7684;&#x6570;&#x636E;&#x7EBF;&#x5F80;&#x5F80;&#x662F;&#x9A71;&#x52A8;&#x5668;&#x4E0D;&#x88AB; Mac &#x7535;&#x8111;&#x68C0;&#x6D4B;&#x5230;&#x7684;&#x7F6A;&#x9B41;&#x7978;&#x9996;&#x3002; USB &#x7AEF;&#x53E3;&#x7684;&#x7535;&#x6E90;&#x4F9B;&#x5E94;&#x95EE;&#x9898;&#x4E5F;&#x53EF;&#x80FD;&#x963B;&#x788D;&#x8FDE;&#x63A5;&#x3002; 2 &#x9010;&#x6B65;&#x6307;&#x5357;&#x3002;Mac &#x4E0A;&#x672A;&#x663E;&#x793A;&#x7684; WD Passport&#xFF1A; &#x65B9;&#x6CD5; 1&#xFF1A;&#x521D;&#x6B65;&#x68C0;&#x67E5; &#x1F50D; &#x9996;&#x5148;&#x786E;&#x4FDD;WD Passport &#x786C;&#x76D8;&#x4E0E; Mac &#x6B63;&#x786E;&#x8FDE;&#x63A5;&#xFF0C;&#x4EE5;&#x53CA; USB &#x6570;&#x636E;&#x7EBF;&#x529F;&#x80FD;&#x6B63;&#x5E38;&#x3002; [&hellip;]</description></oembed>
