{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"Mason Grandusky","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/mgrandusky\/","title":"\u5173\u4e8e\u4ea7\u54c1\u53ec\u56de\u7684\u5206\u7c7b\u3001\u539f\u56e0\u4ee5\u53ca\u8d39\u7528","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"2QfbCVFc0Q\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/food-recalls-classifications-causes-costs\/\">\u5173\u4e8e\u4ea7\u54c1\u53ec\u56de\u7684\u5206\u7c7b\u3001\u539f\u56e0\u4ee5\u53ca\u8d39\u7528<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/food-recalls-classifications-causes-costs\/embed\/#?secret=2QfbCVFc0Q\" width=\"600\" height=\"338\" title=\"&#8220;\u5173\u4e8e\u4ea7\u54c1\u53ec\u56de\u7684\u5206\u7c7b\u3001\u539f\u56e0\u4ee5\u53ca\u8d39\u7528&#8221; &#8212; Registrar\" data-secret=\"2QfbCVFc0Q\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2019\/08\/press_release.jpg","thumbnail_width":1650,"thumbnail_height":500,"description":"&nbsp; \u7f8e\u56fd\u98df\u54c1\u53ca\u836f\u7269\u7ba1\u7406\u5c40(Food and Drug Administration, FDA)\u5b98\u7f51\u9022\u5468\u4e09\u5b9a\u671f\u516c\u5e03\u4e0a\u5468\u53ec\u56de\u60c5\u51b5\uff0c\u7edf\u8ba1\u5305\u62ec\u4ea7\u54c1\u7684\u540d\u79f0\u3001\u6279\u6b21\u3001\u751f\u4ea7\u4f01\u4e1a\u3001\u53ec\u56de\u539f\u56e0\u548c\u53ec\u56de\u7c7b\u522b\u3002 &nbsp; \u53ec\u56de\u7684\u539f\u56e0\u6709\u5f88\u591a\uff0c\u4e3b\u8981\u53ef\u4ee5\u5206\u4e3a\u4ee5\u4e0b\u4e09\u7c7b\uff1a \u2160\u7c7b \u2013 \u53ef\u80fd\u4f1a\u5f15\u8d77\u4e25\u91cd\u5065\u5eb7\u95ee\u9898\u751a\u81f3\u81f4\u4ea1\u7684\u5371\u9669\u548c\u4e0d\u5408\u683c\u4ea7\u54c1\uff0c\u5982\u6ca1\u6709\u6807\u6e05\u8fc7\u654f\u539f \u2161\u7c7b \u2013 \u53ef\u80fd\u4f1a\u5f15\u8d77\u77ed\u6682\u7684\u5065\u5eb7\u95ee\u9898\u7684\u4ea7\u54c1\uff0c\u4ea7\u54c1\u5f15\u8d77\u4e25\u91cd\u5a01\u80c1\u7684\u53ef\u80fd\u6027\u5f88\u5c0f \u2162\u7c7b \u2013 \u4ea7\u54c1\u4e0d\u4f1a\u5f15\u8d77\u4e0d\u826f\u8eab\u4f53\u53cd\u5e94\uff0c\u5982\u6807\u7b7e\u9519\u8bef &nbsp; \u636e\u300a\u8d22\u5bcc\u300b\u6742\u5fd7Beth Kowitt\u7edf\u8ba1\uff0c\u4e00\u6b21\u53ec\u56de\u9020\u6210\u7684\u7ecf\u6d4e\u635f\u5931\u57283\u5343\u4e07\u52309.9\u5343\u4e07\u7f8e\u91d1\u4e4b\u95f4\u3002\u6b64\u5916\uff0c\u76f8\u6bd42004\u5e74\uff0c2014\u5e74FDA\u5c06\u53ec\u56de\u4f01\u4e1a\u6570\u76ee\u7531199\u5bb6\u6269\u5f20\u5230396\u5bb6\u3002FDA\u53ef\u4ee5\u5728\u9a8c\u5382\u8fc7\u7a0b\u3001\u6d88\u8d39\u8005\u6295\u8bc9\u3001\u75be\u75c5\u63a7\u5236\u548c\u9632\u62a4\u4e2d\u5fc3(Disease Control and Prevention, CDC)\u62a5\u544a\u53cd\u6620\u7684\u4ea7\u54c1\u95ee\u9898\u548c\u4f01\u4e1a\u81ea\u613f\u53cd\u6620\u7b49\u60c5\u51b5\u4e0b\u53d1\u73b0\u4ea7\u54c1\u95ee\u9898\u5e76\u63d0\u51fa\u53ec\u56de\uff0c\u4f46\u65e0\u8bba\u662f\u54ea\u79cd\u60c5\u51b5\uff0c\u4e8e\u4f01\u4e1a\u800c\u8a00\uff0c\u8fd9\u90fd\u4f1a\u662f\u7ecf\u6d4e\u548c\u54c1\u724c\u540d\u8a89\u4e0a\u7684\u53cc\u91cd\u635f\u5931\u3002 &nbsp; \u4e3a\u907f\u514d\u4ea7\u54c1\u53ec\u56de\uff0c\u4f01\u4e1a\u5e94\u5728\u51fa\u8d27\u524d\u91c7\u53d6\u9632\u8303\u63aa\u65bd\uff0c\u786e\u4fdd\u4ea7\u54c1\u5b8c\u5168\u7b26\u5408FDA\u8981\u6c42\u548c\u89c4\u8303\u3002Registrar Corp\u98df\u54c1\u5b89\u5168\u4e13\u5bb6\u53ef\u534f\u52a9\u4f01\u4e1a\u5efa\u7acb\u6216\u5ba1\u6838\u98df\u54c1\u5b89\u5168\u8ba1\u5212\u4ee5\u53ca\u63d0\u4f9bFDA\u6a21\u62df\u9a8c\u5382\u670d\u52a1\u3002Registrar Corp \u7684\u6807\u7b7e\u548c\u6210\u5206\u5ba1\u6838\u4e13\u5bb6\u53ef\u4ee5\u6309FDA\u8981\u6c42\u5ba1\u6838\u548c\u4fee\u6539\u4ea7\u54c1\u6807\u7b7e\u3002\u8fd1\u671f\uff0cRegistrar Corp\u63a8\u51faFDA\u5408\u89c4\u76d1\u63a7\u7cfb\u7edf\uff0c\u901a\u8fc7\u8be5\u7cfb\u7edf\uff0c\u4f01\u4e1a\u53ef\u4ee5\u76d1\u63a7\u81ea\u8eab\u548c\u4f9b\u5e94\u5546\u6709\u6ca1\u6709\u5728FDA\u8fdb\u53e3\u8b66\u62a5\u548c\u62d2\u7edd\u5165\u5883\u7684\u540d\u5355\u4e0a\u3002 &nbsp; \u66f4\u591a\u5173\u4e8eFDA\u98df\u54c1\u6807\u7b7e\u6cd5\u89c4\u95ee\u9898\uff0c\u8bf7\u6309\u4ee5\u4e0b\u65b9\u5f0f\u76f4\u63a5\u548c\u6211\u4eec\u7f8e\u56fd\u603b\u90e8\u6216\u9a7b\u534e\u529e\u4e8b\u5904\u8054\u7cfb\u3002\u6216\u767b\u5f55regstaging.wpengine.com\/LiveHelp\uff0c\u6211\u4eec\u7684\u6cd5\u89c4\u987e\u95ee\u5c0624\u5c0f\u65f6\u5728\u7ebf\u4e3a\u60a8\u89e3\u7b54\u7591\u95ee &nbsp;"}