{"version":"1.0","provider_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","provider_url":"https:\/\/howto.ping.fm\/zh\/","author_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","author_url":"https:\/\/howto.ping.fm\/zh\/","title":"Microsoft Azure \u5bf9\u5c0f\u4f01\u4e1a\u7684\u524d\u4e94\u5927\u4f18\u52bf","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"sUvaRu98WL\"><a href=\"https:\/\/howto.ping.fm\/zh\/microsoft-azure-for-small-business\/\">\u5fae\u8f6fAzure\u4e3a\u5c0f\u578b\u4f01\u4e1a\u5e26\u6765\u7684\u4e94\u5927\u4f18\u52bf<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh\/microsoft-azure-for-small-business\/embed\/#?secret=sUvaRu98WL\" width=\"600\" height=\"338\" title=\"&#8220;\u5fae\u8f6fAzure\u4e3a\u5c0f\u578b\u4f01\u4e1a\u5e26\u6765\u7684\u4e94\u5927\u4f18\u52bf&#8221; &#8212; \u5982\u4f55\u64cd\u4f5c &amp; \u6700\u4f73\u8f6f\u4ef6\" data-secret=\"sUvaRu98WL\" 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 * This file cannot have ampersands in it. This is to ensure\n * it can be embedded in older versions of WordPress.\n * See https:\/\/core.trac.wordpress.org\/changeset\/35708.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\tvar supportedBrowser = false,\n\t\tloaded = false;\n\n\t\tif ( document.querySelector ) {\n\t\t\tif ( window.addEventListener ) {\n\t\t\t\tsupportedBrowser = true;\n\t\t\t}\n\t\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\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\tif ( ! data ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( ! ( data.secret || data.message || data.value ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( \/[^a-zA-Z0-9]\/.test( data.secret ) ) {\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\t\/* Resize the iframe on request. *\/\n\t\t\tif ( 'height' === data.message ) {\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}\n\n\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\tif ( 'link' === data.message ) {\n\t\t\t\tsourceURL = document.createElement( 'a' );\n\t\t\t\ttargetURL = document.createElement( 'a' );\n\n\t\t\t\tsourceURL.href = source.getAttribute( 'src' );\n\t\t\t\ttargetURL.href = data.value;\n\n\t\t\t\t\/* Only follow link if the protocol is in the allow list. *\/\n\t\t\t\tif ( ! allowedProtocols.test( targetURL.protocol ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t\/* Only continue if link hostname matches iframe's hostname. *\/\n\t\t\t\tif ( targetURL.host === sourceURL.host ) {\n\t\t\t\t\tif ( document.activeElement === source ) {\n\t\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tif ( loaded ) {\n\t\t\treturn;\n\t\t}\n\n\t\tloaded = true;\n\n\t\tvar isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),\n\t\t\tisIE11 = !!navigator.userAgent.match( \/Trident.*rv:11\\.\/ ),\n\t\t\tiframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\tiframeClone, i, 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 ).substr( 2, 10 );\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\/* Remove security attribute from iframes in IE10 and IE11. *\/\n\t\t\tif ( ( isIE10 || isIE11 ) ) {\n\t\t\t\tiframeClone = source.cloneNode( true );\n\t\t\t\tiframeClone.removeAttribute( 'security' );\n\t\t\t\tsource.parentNode.replaceChild( iframeClone, source );\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\tif ( supportedBrowser ) {\n\t\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\t\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n\t\twindow.addEventListener( 'load', onLoad, false );\n\t}\n})( window, document );\n<\/script>\n","thumbnail_url":"https:\/\/www.ping.fm\/howto\/wp-content\/uploads\/2024\/03\/Microsoft-Azure-for-Small-Business-Top-5-Benefits-Chinese.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5fae\u8f6fAzure\u5bf9\u5c0f\u4f01\u4e1a\u7684\u4e94\u5927\u597d\u5904 \u5bf9\u5c0f\u578b\u4f01\u4e1a\u63a2\u7d22\u6570\u5b57\u89e3\u51b3\u65b9\u6848\u901a\u5e38\u4f1a\u6d89\u53ca\u5230\u4e91\u670d\u52a1\uff0c\u800c\u5728\u8fd9\u4e00\u9886\u57df\u7684\u5f3a\u5927\u529b\u91cf\u5c31\u662f\u5fae\u8f6fAzure\u3002Azure\u51ed\u501f\u5176\u8bbe\u8ba1\u4ee5\u6ee1\u8db3\u591a\u6837\u5316\u9700\u6c42\u7684\u4e30\u5bcc\u4ea7\u54c1\uff0c\u6210\u4e3a\u4f01\u4e1a\u5bfb\u6c42\u6269\u5c55\u3001\u4fdd\u62a4\u5b89\u5168\u548c\u7b80\u5316\u64cd\u4f5c\u7684\u591a\u529f\u80fd\u9009\u62e9\u3002 &#129351; Azure\u5b89\u5168\u4e2d\u5fc3 \u5fae\u8f6fAzure\u5b89\u5168\u4e2d\u5fc3\u662f\u4e00\u4e2a\u7edf\u4e00\u7684\u5b89\u5168\u7ba1\u7406\u7cfb\u7edf\uff0c\u5b83\u52a0\u5f3a\u4e86\u6570\u636e\u4e2d\u5fc3\u7684\u5b89\u5168\u72b6\u51b5\uff0c\u5e76\u5728\u4e91\u4e2d\u63d0\u4f9b\u9ad8\u7ea7\u5a01\u80c1\u4fdd\u62a4\u2014\u2014\u65e0\u8bba\u662f\u5728Azure\u5185\u8fd8\u662f\u5916\u7684\u6df7\u5408\u5de5\u4f5c\u8d1f\u8f7d\uff0c\u4ee5\u53ca\u672c\u5730\u73af\u5883\u3002 \u5b98\u65b9\u7f51\u7ad9 \u4f18\u70b9 \u5148\u8fdb\u7684\u5a01\u80c1\u68c0\u6d4b\u548c\u54cd\u5e94\u80fd\u529b \u6301\u7eed\u7684\u5b89\u5168\u8bc4\u4f30\u548c\u5efa\u8bae \u7f3a\u70b9 \u5bf9\u521d\u5b66\u8005\u6765\u8bf4\u914d\u7f6e\u53ef\u80fd\u590d\u6742 \u5bf9\u4e8e\u5c0f\u578b\u5de5\u4f5c\u8d1f\u8f7d\u53ef\u80fd\u6210\u672c\u8f83\u9ad8 &#129352; Azure\u5b58\u50a8 \u5bf9\u4e8e\u5bfb\u6c42\u5b89\u5168\u548c\u53ef\u6269\u5c55\u5b58\u50a8\u89e3\u51b3\u65b9\u6848\u7684\u5c0f\u578b\u4f01\u4e1a\uff0cAzure\u5b58\u50a8\u63d0\u4f9b\u4e86\u4e00\u7cfb\u5217\u4e91\u5b58\u50a8\u670d\u52a1\uff0c\u5305\u62ecblob\u3001\u6587\u4ef6\u3001\u961f\u5217\u548c\u8868\uff0c\u65e8\u5728\u4e3a\u60a8\u7684\u6570\u636e\u63d0\u4f9b\u9ad8\u53ef\u7528\u6027\u548c\u6301\u4e45\u6027\u3002 \u5b98\u65b9\u7f51\u7ad9 \u4f18\u70b9 \u53ef\u6269\u5c55\u548c\u6301\u4e45\u7684\u5b58\u50a8\u9009\u9879 \u6309\u4f7f\u7528\u4ed8\u8d39\u7684\u5b9a\u4ef7\u6a21\u5f0f \u7f3a\u70b9 \u53ef\u80fd\u9700\u8981\u989d\u5916\u7684\u6570\u636e\u4f20\u8f93\u8d39\u7528 \u9700\u8981\u5b66\u4e60\u66f2\u7ebf\u4ee5\u8fbe\u5230\u6700\u4f73\u4f7f\u7528\u6548\u679c &#129353; Azure\u652f\u6301\u8ba1\u5212 Azure\u7684\u652f\u6301\u8ba1\u5212\u4ece\u4e3a\u5c0f\u578b\u4f01\u4e1a\u8bbe\u8ba1\u7684\u57fa\u672c\u9009\u9879\u5230\u4e3a\u4f01\u4e1a\u63d0\u4f9b\u7684\u66f4\u5168\u9762\u7684\u89e3\u51b3\u65b9\u6848\u4e0d\u7b49\u3002\u8fd9\u4e9b\u8ba1\u5212\u786e\u4fdd\u4f01\u4e1a\u5728\u89e3\u51b3\u5404\u79cd\u4e91\u76f8\u5173\u6311\u6218\u65f6\u80fd\u591f\u83b7\u5f97\u6240\u9700\u7684\u5e2e\u52a9\u3002 \u5b98\u65b9\u7f51\u7ad9 \u4f18\u70b9 \u591a\u79cd\u8ba1\u5212\uff0c\u9488\u5bf9\u4e0d\u540c\u9700\u6c42\u91cf\u8eab\u5b9a\u505a \u83b7\u53d6\u4e13\u4e1a\u77e5\u8bc6\u548c\u89e3\u51b3\u95ee\u9898\u7684\u80fd\u529b \u7f3a\u70b9 \u5bf9\u5c0f\u578b\u4f01\u4e1a\u800c\u8a00\uff0c\u9ad8\u7ea7\u522b\u8ba1\u5212\u53ef\u80fd\u4ef7\u683c\u6602\u8d35 \u57fa\u672c\u8ba1\u5212\u53ef\u80fd\u65e0\u6cd5\u8986\u76d6\u6240\u6709\u60c5\u51b5 4 Azure \u76d1\u63a7 \u4e3a\u4e86\u7ef4\u62a4\u53ef\u9760\u6027\u548c\u6027\u80fd\uff0cAzure \u76d1\u63a7\u5e2e\u52a9\u5c0f\u578b\u4f01\u4e1a\u6536\u96c6\u3001\u5206\u6790\u5e76\u5bf9\u5176\u4e91\u73af\u5883\u548c\u672c\u5730\u73af\u5883\u7684\u9065\u6d4b\u6570\u636e\u91c7\u53d6\u884c\u52a8\u3002\u8fd9\u4f7f\u5f97\u4f01\u4e1a\u80fd\u591f\u6700\u5927\u5316\u5176\u5e94\u7528\u7a0b\u5e8f\u7684\u6027\u80fd\u548c\u53ef\u7528\u6027\u3002 \u5b98\u65b9\u7f51\u7ad9 \u4f18\u70b9 \u63d0\u4f9b\u5bf9\u5e94\u7528\u7a0b\u5e8f\u548c\u57fa\u7840\u8bbe\u65bd\u7684\u6df1\u5165\u6d1e\u5bdf \u6709\u52a9\u4e8e\u4e3b\u52a8\u53d1\u73b0\u95ee\u9898\u5e76\u8fdb\u884c\u6545\u969c\u6392\u9664 \u7f3a\u70b9 \u8bbe\u7f6e\u548c\u5b9a\u5236\u8b66\u62a5\u7684\u590d\u6742\u6027 \u6570\u636e\u6444\u53d6\u548c\u5b58\u50a8\u53ef\u80fd\u53d8\u5f97\u6602\u8d35 5 Azure \u6210\u672c\u7ba1\u7406 \u901a\u8fc7 Azure \u6210\u672c\u7ba1\u7406\uff0c\u5c0f\u578b\u4f01\u4e1a\u53ef\u4ee5\u66f4\u6e05\u6670\u5730\u4e86\u89e3\u4ed6\u4eec\u7684\u4e91\u652f\u51fa\uff0c\u5e76\u5bf9\u4f18\u5316\u4e91\u8d39\u7528\u4f5c\u51fa\u660e\u667a\u51b3\u7b56\u3002\u8fd9\u4e2a\u5de5\u5177\u6709\u52a9\u4e8e\u8ddf\u8e2a\u8d44\u6e90\u4f7f\u7528\u5e76\u6709\u6548\u5730\u7ba1\u7406\u6210\u672c\u3002 \u5b98\u65b9\u7f51\u7ad9 \u4f18\u70b9 \u8d22\u52a1\u53ef\u89c1\u6027\u548c\u9884\u7b97\u5de5\u5177 \u6709\u52a9\u4e8e\u4f18\u5316\u4e91\u652f\u51fa \u7f3a\u70b9 [&hellip;]"}