해결책:
1. ueditordialogsinternal.js에 document.domain = 'root domain name'을 추가합니다.
2. 또한 현재 페이지에 루트 도메인 이름을 지정합니다.
<script type="text/javascript"> document.domain = "根域名"; </script>
Chrome과 Firefox에서는 문제가 되지 않지만 IE에서는 UEditor를 수정하고 editor.js에서 찾으면 됩니다.
this._setup(container.firstChild.contentWindow. document );
그 위에 다음 코드를 추가하세요:
if (ie) { document.getElementById('baidu_editor_' + this.uid).src = "javascript:(function(){document.open();document.domain='"+document.domain+"';document.close();})()"; }
다음 찾기:
me.document = doc;
아래에 추가하세요:
me.document.domain='루트 도메인 이름';
이로써 UEditor 도메인 간 이미지 전송 문제가 해결되었으니 모든 분들께 도움이 되길 바랍니다.
UEditor 편집기 크로스 도메인 업로드 솔루션과 관련된 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!