{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"admin","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/registrar\/","title":"\u5e38\u89c1\u95ee\u9898\uff1aFDA\u662f\u5426\u5c06\u6930\u5b50\u89c6\u4e3a\u8fc7\u654f\u539f\uff1f","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"4xSwbNm2I7\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/is-coconut-an-allergen\/\">\u5e38\u89c1\u95ee\u9898\uff1aFDA\u662f\u5426\u5c06\u6930\u5b50\u89c6\u4e3a\u8fc7\u654f\u539f\uff1f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/is-coconut-an-allergen\/embed\/#?secret=4xSwbNm2I7\" width=\"600\" height=\"338\" title=\"&#8220;\u5e38\u89c1\u95ee\u9898\uff1aFDA\u662f\u5426\u5c06\u6930\u5b50\u89c6\u4e3a\u8fc7\u654f\u539f\uff1f&#8221; &#8212; Registrar\" data-secret=\"4xSwbNm2I7\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2019\/07\/coconut-an-allergen.jpg","thumbnail_width":1400,"thumbnail_height":427,"description":"\u5927\u7ea6\u67093200\u4e07\u7f8e\u56fd\u516c\u6c11\u5bf9\u98df\u7269\u8fc7\u654f\u3002\u4f5c\u4e3a\u56de\u5e94\uff0c\u56fd\u4f1a\u57282004\u5e74\u901a\u8fc7\u4e86\u300a\u98df\u54c1\u8fc7\u654f\u539f\u6807\u8bc6\u4e0e\u6d88\u8d39\u8005\u4fdd\u62a4\u6cd5\u6848\uff08\u7b80\u79f0FALCPA\uff09\u300b\uff0c\u8981\u6c42\u98df\u54c1\u6807\u7b7e\u4e0a\u5fc5\u987b\u6807\u8bc6\u6240\u6709\u6709\u53ef\u80fd\u5bfc\u81f4\u8fc7\u654f\u53cd\u5e94\u7684\u6210\u5206\u3002\u8be5\u6cd5\u6848\u5b9a\u4e49\u4e86\u516b\u79cd\u4e3b\u8981\u7684\u98df\u7269\u8fc7\u654f\u539f\uff0c\u5176\u4e2d\u4e00\u79cd\u4e3a\u6811\u672c\u575a\u679c\u3002\u7f8e\u56fd\u98df\u54c1\u548c\u836f\u7269\u76d1\u7763\u7ba1\u7406\u5c40\uff08FDA\uff09\u5c06\u6930\u5b50\u89c6\u4e3a\u6811\u672c\u575a\u679c\uff0c\u56e0\u6b64\u6930\u5b50\u5c5e\u4e8e\u5fc5\u987b\u6807\u8bc6\u7684\u8fc7\u654f\u539f\u3002\u8fd9\u5bf9\u67d0\u4e9b\u4eba\u6765\u8bf4\u53ef\u80fd\u6709\u4e9b\u56f0\u60d1\uff0c\u56e0\u4e3a\u6930\u5b50\u901a\u5e38\u5e76\u4e0d\u88ab\u4eba\u4e3a\u662f\u575a\u679c\uff0c\u800c\u4e14\u5f88\u5c11\u6709\u4eba\u540c\u65f6\u5bf9\u771f\u6b63\u7684\u6811\u672c\u575a\u679c\u548c\u6930\u5b50\u8fc7\u654f\u3002\u5c3d\u7ba1\u5982\u6b64\uff0c\u6930\u5b50\u4ecd\u7136\u5728\u5fc5\u987b\u7533\u62a5\u4e4b\u5217\u3002\u56e0\u6b64\u98df\u54c1\u751f\u4ea7\u4f01\u4e1a\u5bf9\u542b\u6709\u6930\u5b50\u6210\u5206\u7684\u4ea7\u54c1\u8fdb\u884c\u8d34\u6807\u65f6\uff0c\u5fc5\u987b\u5c06\u6930\u5b50\u6210\u5206\u9002\u5f53\u5730\u5217\u5728\u6210\u5206\u8868\u4e2d\u3002 \u300a\u98df\u54c1\u8fc7\u654f\u539f\u6807\u8bc6\u4e0e\u6d88\u8d39\u8005\u4fdd\u62a4\u6cd5\u6848\u300b\u5bf9\u8fc7\u654f\u539f\u6807\u8bc6\u7684\u8981\u6c42 FALCPA\u9002\u7528\u4e8e\u5982\u4e0b\u5927\u5927\u7c7b\u98df\u54c1\uff0c\u56e0\u4e3a\u5728\u7f8e\u56fd90%\u7684\u8fc7\u654f\u7531\u8fd9\u516b\u7c7b\u98df\u7269\u5f15\u8d77\uff1a \u725b\u5976 \u86cb\u7c7b \u9c7c\u7c7b \u7532\u58f3\u7c7b\u6c34\u751f\u52a8\u7269 \u6811\u672c\u575a\u679c \u82b1\u751f \u5c0f\u9ea6 \u5927\u8c46 \u8be5\u6cd5\u6848\u8981\u6c42\u6240\u6709\u542b\u6709\u4e00\u79cd\u6216\u8005\u591a\u79cd\u4e0a\u8ff0\u4e3b\u8981\u98df\u54c1\u8fc7\u654f\u539f\u7684\u98df\u54c1\u5fc5\u987b\u5728\u6807\u7b7e\u4e0a\u7528\u201c\u542b\u6709\u201d\u58f0\u79f0\u6765\u5217\u51fa\u8fc7\u654f\u539f\u7684\u98df\u7269\u6765\u6e90\uff0c\u6216\u8005\u5728\u6807\u51c6\u914d\u6599\u8868\u4e2d\u5217\u51fa\u901a\u7528\u6216\u5e38\u89c1\u7684\u98df\u7269\u8fc7\u654f\u539f\u540d\u79f0\u3002\u8fd9\u6837\u505a\u662f\u4e3a\u4e86\u907f\u514d\u6d88\u8d39\u8005\u5bf9\u6e90\u81ea\u98df\u7269\u8fc7\u654f\u539f\u7684\u6210\u5206\u4ea7\u751f\u6df7\u6dc6\uff08\u4f8b\u5982\uff0c\u4e73\u6e05\u548c\u725b\u5976\uff09\u3002\u201c\u542b\u6709\u201d\u58f0\u79f0\u5fc5\u987b\u4e0e\u6210\u5206\u5217\u8868\u76f8\u90bb\uff0c\u5e76\u4e14\u5b57\u4f53\u5927\u5c0f\u5fc5\u987b\u4e00\u81f4\u3002\u5bf9\u4e8e\u542b\u6709\u6811\u575a\u679c\u3001\u7532\u58f3\u7c7b\u8d1d\u7c7b\u6216\u9c7c\u7c7b\u7684\u98df\u54c1\uff0c\u5fc5\u987b\u4ee5\u5176\u5171\u540c\u6216 \u5e38\u89c1\u7684\u540d\u79f0\u8bf4\u660e\u7279\u5b9a\u79cd\u7c7b\u7684\u575a\u679c\u6216\u9c7c\u7c7b\u6216\u8d1d\u7c7b\u3002 \u6930\u5b50\u4e0e\u8fc7\u654f\u539f\u6807\u7b7e \u867d\u7136\u6930\u5b50\u957f\u5728\u6811\u4e0a\uff0c\u5e76\u4e14\u540d\u5b57\u91cc\u6709\u201c\u575a\u679c\u201d\u8fd9\u4e2a\u8bcd\uff0c\u4f46\u662f\u4ece\u690d\u7269\u5b66\u4e0a\u8bb2\uff0c\u6930\u5b50\u662f\u6838\u679c\uff0c\u4e00\u79cd\u6709\u51e0\u5c42\u786c\u58f3\u7684\u6c34\u679c\u3002\u5c3d\u7ba1\u5982\u6b64\uff0c\u5728FDA\u7684\u300a\u98df\u54c1\u8fc7\u654f\u539f\u6807\u8bc6\u4e0e\u6d88\u8d39\u8005\u4fdd\u62a4\u6cd5\u6848\u300b\u4e2d\uff0c\u5176\u4ecd\u7136\u88ab\u5f52\u7c7b\u4e3a\u6811\u672c\u575a\u679c\u3002\u8fd9\u53ef\u80fd\u4f1a\u8ba9\u98df\u54c1\u7684\u8d34\u6807\u5546\u611f\u5230\u56f0\u60d1\uff0c\u56e0\u4e3a\u4ed6\u4eec\u53ef\u80fd\u6ca1\u6709\u60f3\u5230\u6930\u5b50\u662f\u4e00\u79cd\u771f\u6b63\u7684\u575a\u679c\uff0c\u6216\u8005\u662f\u4e00\u79cd\u4e3b\u8981\u7684\u98df\u7269\u8fc7\u654f\u539f\u3002 \u867d\u7136\u5f88\u5c11\u89c1\uff0c\u4f46\u5728\u7f8e\u56fd\u4ecd\u6709\u4e0d\u5c11\u4eba\u5bf9\u6930\u5b50\u8fc7\u654f\u3002\u6839\u636e\u8be5\u6cd5\u6848\uff0cFDA\u53ef\u80fd\u5c06\u6930\u5b50\u5217\u5165\u6811\u575a\u679c\u7c7b\uff0c\u4ee5\u6db5\u76d6\u8fd9\u79cd\u5df2\u77e5\u7684\u98df\u7269\u8fc7\u654f\u539f\u3002FDA\u627f\u8ba4\u4ed6\u4eec\u7684\u6811\u672c\u575a\u679c\u540d\u5355\u5f88\u5e7f\u6cdb\uff0c\u751a\u81f3\u53ef\u80fd\u5305\u62ec\u76ee\u524d\u6ca1\u6709\u98df\u7528\u8fc7\u7684\u4ea7\u54c1\u79cd\u7c7b\u3002\u4e8b\u5b9e\u4e0a\uff0c\u8bb8\u591a\u6839\u636e\u8be5\u6cd5\u6848\u88ab\u8ba4\u5b9a\u4e3a\u6811\u672c\u575a\u679c\u7684\u575a\u679c\u5e76\u4e0d\u662f\u690d\u7269\u6027\u7684\u6811\u575a\u679c\uff0c\u4f46FDA\u7684\u804c\u8d23\u662f\u4fdd\u62a4\u5c3d\u53ef\u80fd\u591a\u7684\u4eba\u514d\u53d7\u98df\u7269\u8fc7\u654f\u7684\u56f0\u6270\uff0c\u4e0d\u4e00\u5b9a\u8981\u786e\u5b9a\u6240\u6709\u98df\u7269\u7684\u6b63\u786e\u5206\u7c7b\u3002 \u7efc\u4e0a\u6240\u8ff0\uff0c\u5982\u679c\u8d35\u53f8\u662f\u4e00\u4e2a\u98df\u54c1\u4f01\u4e1a\uff0c\u5e76\u4e14\u8d34\u6807\u7684\u4ea7\u54c1\u542b\u6709\u6930\u5b50\uff0c\u90a3\u4e48\u60a8\u5fc5\u987b\u5728\u8981\u6807\u8bc6\u6930\u5b50\u7684\u6210\u5206\u3002\u60a8\u53ef\u4ee5\u9009\u62e9\u5728\u5728\u4ea7\u54c1\u6210\u5206\u8868\u4e2d\u76f4\u63a5\u5217\u51fa\uff0c\u6216\u8005\u5728\u4ea7\u54c1\u6210\u5206\u8868\u65c1\u4ee5\u201c\u542b\u6709\u201d\u58f0\u79f0\u7684\u5f62\u5f0f\u6807\u8bc6\u51fa\u6765\u3002\u4ece\u6930\u5b50\u4e2d\u63d0\u53d6\u7684\u6210\u5206\u5fc5\u987b\u5728\u6210\u5206\u4e2d\u4f7f\u7528\u901a\u7528\u540d\u79f0\u201c\u6930\u5b50\u201d\uff0c\u6216\u76f4\u63a5\u6807\u8bc6\u201c\u542b\u6709\u6930\u5b50\u201d\u3002\u5426\u5219\uff0cFDA\u5c06\u4f1a\u89c6\u4e3a\u4ea7\u54c1\u8d34\u6807\u9519\u8bef\u4ece\u800c\u91c7\u53d6\u7ba1\u5236\u63aa\u65bd\u3002\u6bd4\u5982\uff0c\u51fa\u5177\u8b66\u544a\u4fe1\uff0c\u5217\u5165\u9ed1\u540d\u5355\uff0c\u6216\u8005\u6263\u8d27\u3002\u672a\u80fd\u6b63\u786e\u5217\u51fa\u8fc7\u654f\u539f\u662f\u6700\u5e38\u89c1\u7684\u98df\u54c1\u5b89\u5168\u8fdd\u89c4\u884c\u4e3a\u4e4b\u4e00\uff0c\u56e0\u6b64\u5728\u8bbe\u8ba1\u4ea7\u54c1\u6807\u7b7e\u7684\u65f6\u5019\u8003\u8651\u5230\u8fd9\u4e00\u70b9\u5c31\u5c24\u4e3a\u91cd\u8981\u3002 Registrar Corp\u662f\u4e00\u5bb6\u79c1\u7acb\u7684FDA\u6cd5\u89c4\u54a8\u8be2\u516c\u53f8\uff0c\u81f4\u529b\u4e8e\u534f\u52a9\u4f01\u4e1a\u9075\u5faaFDA\u7684\u6cd5\u89c4\u3002Registrar Corp\u63d0\u4f9b\u4ea7\u54c1\u6807\u7b7e\u548c\u6210\u5206\u5ba1\u6838\u670d\u52a1\u4ee5\u5e2e\u52a9\u4f01\u4e1a\u7684\u4ea7\u54c1\u6807\u7b7e\u7b26\u5408FDA\u7684\u8981\u6c42\uff0c\u5305\u62ec\u4fdd\u8bc1\u5176\u542b\u6709\u6b63\u786e\u7684\u8fc7\u654f\u539f\u58f0\u660e\u3002\u6b32\u4e86\u89e3\u66f4\u591a\u8d44\u8baf\uff0c\u8bf7\u81f4\u7535 +1-757-224-0177\u6216\u8005\u70b9\u51fbregstaging.wpengine.com\/livehelp\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5373\u65f6\u8054\u7cfb\u3002"}