{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_publish","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_publish\/","title":"\u95dc\u9867\u8005\u7684\u4e00\u4efd\u300c\u7406\u89e3\u300d\u2014\u2014\u540c\u7406\u5fc3 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"mWqKekZ3pe\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/presmessage\/developing-empathy-a-caregivers-understanding\/\">Developing Empathy: A Caregiver's Understanding<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/presmessage\/developing-empathy-a-caregivers-understanding\/embed\/#?secret=mWqKekZ3pe\" width=\"600\" height=\"338\" title=\"\u201cAn \u201cunderstanding\u201d from a caregiver\u2014empathy\u201d \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"mWqKekZ3pe\" 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:\/\/www.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u5b78\u9662\u7c21\u4ecb \u8fd4\u56de\u4e3b\u9801 \u9662\u9577\u7684\u8a71 \u66f9\u5049\u5f64\u9662\u9577 \u95dc\u9867\u8005\u7684\u4e00\u4efd\u300c\u7406\u89e3\u300d\u2014\u2014\u540c\u7406\u5fc3 \u7406\u89e3\u53d7\u95dc\u9867\u8005\u7684\u751f\u547d\u7d93\u9a57 \u3000\u3000\u6bcf\u500b\u4eba\u90fd\u6e34\u671b\u5f97\u5230\u5225\u4eba\u7684\u611b\u548c\u95dc\u9867\uff0c\u671f\u76fc\u81ea\u5df1\u751f\u547d\u8def\u9014\u4e0a\u7684\u906d\u9047\u3001\u7d93\u9a57\u88ab\u8996\u70ba\u771f\u5be6\u7684\uff0c\u80fd\u5f97\u5230\u5225\u4eba\u7684\u63a5\u7d0d\u8207\u91cd\u8996\u3002\u9019\u662f\u4eba\u7684\u5929\u6027\u548c\u57fa\u672c\u9700\u8981\u3002 \u3000\u3000\u6211\u5011\u8a72\u5982\u4f55\u95dc\u9867\u5225\u4eba\uff0c\u53bb\u6eff\u8db3\u5c0d\u65b9\u53d7\u95dc\u9867\u7684\u57fa\u672c\u9700\u8981\uff1f \u3000\u3000\u5728\u95dc\u9867\u5225\u4eba\u6642\uff0c\u6211\u5011\u5fc5\u9808\u5c0a\u91cd\u548c\u7406\u89e3\u5c0d\u65b9\u7684\u751f\u547d\u7d93\u9a57\u3002\u9019\u8981\u6c42\u95dc\u9867\u8005\u9032\u5165\u5225\u4eba\u7684\u751f\u547d\u4e16\u754c\uff0c\u9032\u5165\u5176\u7d93\u9a57\u7684\u6700\u6df1\u5c64\u9818\u57df\uff0c\u5c0d\u5225\u4eba\u7684\u964c\u751f\u7d93\u9a57\u6709\u4e00\u4efd\u540c\u7406\u5fc3\uff08empathy\uff09\u7684\u300c\u7406\u89e3\u300d\u3002 \u3000\u3000\u540c\u7406\u5fc3\u7684\u7406\u89e3\uff0c\u662f\u6307\u95dc\u9867\u8005\u8de8\u6b65\u9032\u5165\u5225\u4eba\u7684\u7d93\u9a57\u4e4b\u4e2d\uff0c\u6709\u4e00\u4efd\u8046\u807d\u3001\u7406\u89e3\u548c\u50b3\u9054\u7684\u80fd\u529b\u3002\u5b83\u4e0d\u662f\u4e00\u7a2e\u6280\u8853\uff08technique\uff09\uff0c\u800c\u662f\u4e00\u7a2e\u53d6\u5411\u548c\u5b78\u7fd2\u5f97\u4f86\u7684\u85dd\u8853\u80fd\u529b\uff08artful skill\uff09\uff0c\u66f4\u662f\u751f\u6d3b\u7684\u5fb7\u6027\u3002\u5b83\u80fd\u53eb\u6211\u5011\u7406\u89e3\u5225\u4eba\u548c\u4ed6\u7684\u4e16\u754c\uff0c\u800c\u7126\u9ede\u5728\u65bc\u5c0d\u7d93\u9a57\u7684\u7406\u89e3\uff08understanding\uff09\uff0c\u800c\u4e0d\u5728\u65bc\u5c0d\u7d93\u9a57\u7684\u89e3\u91cb\uff08explanation\uff09\u3002\u5b83\u662f\u4e00\u500b\u5165\u53e3\u2014\u2014\u9032\u5165\u5225\u4eba\u751f\u547d\u7684\u7d93\u9a57\u4e16\u754c\u3002 \u4ee5\u540c\u7406\u5fc3\u53bb\u611f\u89ba\u548c\u56de\u61c9 \u3000\u3000\u6211\u5011\u5982\u4f55\u9032\u5165\u5225\u4eba\u7684\u7d93\u9a57\u4e16\u754c\uff1f \u3000\u3000\u540c\u7406\u5fc3\u7684\u7406\u89e3\u65b9\u5f0f\uff0c\u662f\u5617\u8a66\u900f\u904e\u4e00\u9023\u4e32\u6709\u689d\u7406\u3001\u6709\u7d50\u69cb\u7684\u554f\u984c\u53bb\u7406\u89e3\uff0c\u5c0d\u53d7\u95dc\u9867\u8005\u7684\u8655\u5883\u611f\u540c\u8eab\u53d7\u3002\u82e5\u7136\u6709\u9700\u8981\uff0c\u95dc\u9867\u8005\u53ef\u91cd\u8907\u767c\u554f\u6216\u6539\u7528\u53e6\u4e00\u7a2e\u65b9\u5f0f\u767c\u554f\uff0c\u76f4\u81f3\u4ed6\u80fd\u5920\u660e\u767d\u5c0d\u65b9\u6240\u63cf\u8ff0\u7684\u751f\u547d\u7d93\u9a57\u548c\u8655\u5883\u3002\u90a3\u5c31\u662f\uff1a\u95dc\u9867\u8005\u900f\u904e\u4ed4\u7d30\u7684\u767c\u554f\uff0c\u53bb\u300c\u611f\u89ba\u300d\u5225\u4eba\u5167\u88e1\u7684\u3001\u4e3b\u89c0\u6027\u7684\u751f\u547d\u7d93\u9a57\u3002 \u3000\u3000\u6b64\u300c\u611f\u89ba\u300d\u662f\u4e00\u7a2e\u5177\u6709\u610f\u5411\u7684\u60c5\u611f\u7684\u56de\u61c9\uff0c\u4ee5\u56de\u61c9\u5225\u4eba\u7684\u611f\u89ba\u3002\u8981\u56de\u61c9\u5225\u4eba\u7684\u611f\u89ba\uff0c\u95dc\u9867\u8005\u9808\u900f\u904e\u60f3\u50cf\uff08imagination\uff09\u9032\u5165\u5225\u4eba\u7684\u610f\u8b58\uff08consciousness\uff09\uff0c\u7406\u89e3\u5c0d\u65b9\u8eab\u9ad4\u7684\u7570\u5e38\u8868\u73fe\uff0c\u4ee5\u53ca\u4ed6\u7684\u89c0\u611f\uff08perception\uff09\u3001\u611f\u53d7\uff08feeling\uff09\u548c\u601d\u60f3\u3002 \u3000\u3000\u5fc3\u7406\u5b78\u5927\u5e2b\u7f85\u5091\u65af\uff08Carl Rogers\uff09\u662f\u6700\u65e9\u5c07\u300c\u540c\u7406\u5fc3\u300d\u4e00\u8a5e\u7d0d\u5165\u5fc3\u7406\u5b78\u8fad\u5eab\u7684\u5b78\u8005\u3002\u4ed6\u63cf\u8ff0\u540c\u7406\u5fc3\u662f\u8f14\u5c0e\u8005\u5c0d\u5225\u4eba\u5167\u5728\u7684\u300c\u6307\u6d89\u6846\u67b6\u300d\uff08frame of reference\uff09\u7684\u63a1\u7d0d\uff0c\u4e26\u6307\u51fa\u8981\u4ee5\u540c\u7406\u5fc3\u53bb\u611f\u53d7\u5225\u4eba\u7684\u79c1\u4eba\u4e16\u754c\uff0c\u300c\u597d\u50cf\u300d\uff08as if\uff09\u9019\u4e16\u754c\u662f\u8f14\u5c0e\u8005\u81ea\u5df1\u7684\u4e16\u754c\u3002\u4ed6\u7684\u610f\u601d\u662f\uff1a\u8f14\u5c0e\u8005\u9808\u300c\u4ee5\u53d7\u8f14\u5c0e\u8005\u7684\u773c\u754c\u89c0\u770b\uff08perceive\uff09\u4e16\u754c\u300d\u3002\u63db\u8a00\u4e4b\uff0c\u8f14\u5c0e\u8005\u5c08\u6ce8\u5730\u7406\u89e3\u5c0d\u65b9\uff0c\u5982\u540c\u5c0d\u65b9\u7406\u89e3\u81ea\u8eab\u4e00\u6a23\u3002\u8f14\u5c0e\u8005\u9032\u5165\u5c0d\u65b9\u7684\u7d93\u9a57\u4e16\u754c\uff0c\u611f\u53d7\u5c0d\u65b9\u7684\u61a4\u6012\u3001\u9a5a\u61fc\u3001\u56f0\u64fe\u3001\u7169\u4e82\u3001\u50b7\u75db\u3001\u5feb\u6a02\u3001\u8208\u596e\u3001\u6eff\u8db3\u7b49\u7d93\u9a57\u3002\u7f85\u5091\u65af\u6307\u51fa\uff0c\u9019\u7a2e\u5c08\u6ce8\u5730\u9032\u5165\u5225\u4eba\u7684\u614b\u5ea6\u3001\u60c5\u7dd2\u3001\u610f\u5ff5\u7684\u505a\u6cd5\uff0c\u8981\u6c42\u4eba\u5fc5\u9808\u653e\u68c4\u81ea\u6211\uff08self-abandonment\uff09\u3002\u9019\u662f\u5fc3\u7406\u6cbb\u7642"}