>  기사  >  php教程  >  UEditor 편집기 도메인 간 업로드 솔루션

UEditor 편집기 도메인 간 업로드 솔루션

高洛峰
高洛峰원래의
2016-12-27 09:20:181297검색

해결책:

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(&#39;baidu_editor_&#39; + this.uid).src = "javascript:(function(){document.open();document.domain=&#39;"+document.domain+"&#39;;document.close();})()";
}

다음 찾기:

me.document = doc;

아래에 추가하세요:

me.document.domain='루트 도메인 이름';

이로써 UEditor 도메인 간 이미지 전송 문제가 해결되었으니 모든 분들께 도움이 되길 바랍니다.


UEditor 편집기 크로스 도메인 업로드 솔루션과 관련된 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.