<?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;&#x4FEE;&#x590D;&#x5728; Mac &#x4E0A;&#x65E0;&#x6CD5;&#x8BC6;&#x522B;&#x6216;&#x4E0D;&#x663E;&#x793A;&#x7684; SD &#x5361;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="qc5Rzb9z0D"&gt;&lt;a href="https://datarecovery.ping.fm/zh/sd-card-not-readable-mac/"&gt;&#x5982;&#x4F55;&#x4FEE;&#x590D;SD&#x5361;&#x5728;Mac&#x8BBE;&#x5907;&#x4E0A;&#x65E0;&#x6CD5;&#x8BC6;&#x522B;/&#x4E0D;&#x663E;&#x793A;&#x7684;&#x95EE;&#x9898;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://datarecovery.ping.fm/zh/sd-card-not-readable-mac/embed/#?secret=qc5Rzb9z0D" width="600" height="338" title="&#x201C;&#x5982;&#x4F55;&#x4FEE;&#x590D;SD&#x5361;&#x5728;Mac&#x8BBE;&#x5907;&#x4E0A;&#x65E0;&#x6CD5;&#x8BC6;&#x522B;/&#x4E0D;&#x663E;&#x793A;&#x7684;&#x95EE;&#x9898;&#x201D; &#x2014; &#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;" data-secret="qc5Rzb9z0D" 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-SD-Card-that-is-Not-Readable-Showing-Up-on-Mac-Chinese.jpg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>731</thumbnail_height><description>&#x5982;&#x4F55;&#x4FEE;&#x590D;&#x5728; Mac &#x4E0A;&#x65E0;&#x6CD5;&#x8BFB;&#x53D6;/&#x663E;&#x793A;&#x7684; SD &#x5361; &#x5F53;&#x60A8;&#x9047;&#x5230;SD &#x5361;&#x5728; Mac &#x4E0A;&#x4E0D;&#x53EF;&#x8BFB;&#x53D6;&#x7684;&#x9519;&#x8BEF;&#x65F6;&#x53EF;&#x80FD;&#x4F1A;&#x611F;&#x5230;&#x6CAE;&#x4E27;&#xFF0C;&#x5C24;&#x5176;&#x662F;&#x5F53;&#x5361;&#x5185;&#x6570;&#x636E;&#x6781;&#x5176;&#x91CD;&#x8981;&#x65F6;&#x3002;&#x5E78;&#x8FD0;&#x7684;&#x662F;&#xFF0C;&#x6709;&#x51E0;&#x79CD;&#x65B9;&#x6CD5;&#x53EF;&#x4EE5;&#x89E3;&#x51B3;&#x8FD9;&#x4E2A;&#x95EE;&#x9898;&#x5E76;&#x6062;&#x590D;&#x60A8;&#x7684;&#x6570;&#x636E;&#x3002;&#x7136;&#x800C;&#xFF0C;&#x91CD;&#x8981;&#x7684;&#x662F;&#x8981;&#x8C28;&#x614E;&#x5904;&#x7406;&#x95EE;&#x9898;&#xFF0C;&#x4EE5;&#x907F;&#x514D;&#x8FDB;&#x4E00;&#x6B65;&#x635F;&#x5BB3;&#x3002;&#x5BF9;&#x4E8E;&#x90A3;&#x4E9B;&#x5BFB;&#x627E;&#x6700;&#x4F73;Mac SD &#x5361;&#x6062;&#x590D;&#x8F6F;&#x4EF6;&#x7684;&#x4EBA;&#x6765;&#x8BF4;&#xFF0C;&#x6709;&#x8BB8;&#x591A;SD &#x5361;&#x6062;&#x590D;&#x5DE5;&#x5177;&#x53EF;&#x4F9B;&#x63A2;&#x7D22;&#x3002; 1 &#x5E38;&#x89C1;&#x60C5;&#x51B5;&#xFF1A; Mac &#x4E0A;&#x65E0;&#x6CD5;&#x8BFB;&#x53D6; SD &#x5361;&#x7684;&#x5E38;&#x89C1;&#x75C7;&#x72B6; &#x1F4BB; SD &#x5361;&#x5728;&#x684C;&#x9762;&#x6216;&#x8005;&#x67E5;&#x627E;&#x5668;&#x4E2D;&#x6CA1;&#x6709;&#x663E;&#x793A;&#x3002; &#x51FA;&#x73B0;&#x63D0;&#x793A;&#xFF0C;&#x8BF4;&#x662F;&#x63D2;&#x5165;&#x7684;&#x78C1;&#x76D8;&#x65E0;&#x6CD5;&#x88AB;&#x8FD9;&#x53F0;&#x7535;&#x8111;&#x8BFB;&#x53D6;&#x3002; SD &#x5361;&#x88AB;&#x7CFB;&#x7EDF;&#x8BC6;&#x522B;&#x4F46;&#x65E0;&#x6CD5;&#x8BBF;&#x95EE;&#x6570;&#x636E;&#x3002; &#x51FA;&#x73B0;&#x9519;&#x8BEF;&#x4FE1;&#x606F;&#xFF0C;&#x5982;&#x201C;&#x60A8;&#x63D2;&#x5165;&#x7684;&#x78C1;&#x76D8;&#x65E0;&#x6CD5;&#x88AB;&#x8FD9;&#x53F0;&#x7535;&#x8111;&#x8BFB;&#x53D6;&#x201D;&#x3002; SD &#x5361;&#x53EF;&#x8BFB;&#x6027;&#x95EE;&#x9898;&#x7684;&#x5E38;&#x89C1;&#x539F;&#x56E0; &#x1F6A7; SD &#x5361;&#x7269;&#x7406;&#x635F;&#x574F;&#x6216;&#x6587;&#x4EF6;&#x635F;&#x574F;&#x3002; SD &#x5361;&#x548C; OS X/macOS &#x4E4B;&#x95F4;&#x7684;&#x6587;&#x4EF6;&#x7CFB;&#x7EDF;&#x4E0D;&#x517C;&#x5BB9;&#x3002; &#x4E0D;&#x6B63;&#x786E;&#x7684;&#x5F39;&#x51FA;SD &#x5361;&#x53EF;&#x80FD;&#x5BFC;&#x81F4;&#x6587;&#x4EF6;&#x635F;&#x574F;&#x3002; &#x5B58;&#x5728;&#x7684;&#x574F;&#x6247;&#x533A;&#x53EF;&#x80FD;&#x4F1A;&#x5F71;&#x54CD;&#x8BFB;&#x53D6;&#x3002; &#x65E0;&#x6CD5;&#x8BFB;&#x53D6; SD &#x5361;&#x5BF9;&#x7528;&#x6237;&#x7684;&#x5F71;&#x54CD; &#x1F6D1; &#x5F53;SD &#x5361;&#x53D8;&#x5F97;&#x65E0;&#x6CD5;&#x8BFB;&#x53D6;&#x65F6;&#xFF0C;&#x6709;&#x4E22;&#x5931;&#x5B9D;&#x8D35;&#x6570;&#x636E;&#x548C;&#x5A92;&#x4F53;&#x7684;&#x98CE;&#x9669;&#x3002; &#x5982;&#x679C;SD &#x5361;&#x5305;&#x542B;&#x5DE5;&#x4F5C;&#x76F8;&#x5173;&#x6587;&#x4EF6;&#xFF0C;&#x53EF;&#x80FD;&#x4F1A;&#x5F71;&#x54CD;&#x5DE5;&#x4F5C;&#x6548;&#x7387;&#x3002; &#x8BBF;&#x95EE;&#x4E2A;&#x4EBA;&#x6216;&#x4E13;&#x4E1A;&#x6570;&#x636E;&#x53D7;&#x963B;&#x65F6;&#xFF0C;&#x632B;&#x8D25;&#x611F;&#x52A0;&#x5267;&#x3002; &#x62C5;&#x5FC3;&#x6602;&#x8D35;&#x7684;&#x6570;&#x636E;&#x6062;&#x590D;&#x670D;&#x52A1;&#x4EE5;&#x6062;&#x590D;&#x4E22;&#x5931;&#x7684;&#x6587;&#x4EF6;&#x3002; 2 &#x9010;&#x6B65;&#x6307;&#x5357;&#x3002;SD &#x5361;&#x5728; Mac &#x4E0A;&#x4E0D;&#x53EF;&#x8BFB;&#xFF1A; &#x65B9;&#x6CD5; 1&#xFF1A;&#x68C0;&#x67E5;&#x8FDE;&#x63A5; [&hellip;]</description></oembed>
