2017-04-09 65 views
1

有誰知道如何使響應文件管理器(http://www.responsivefilemanager.com)與tinyMCE 4一起使用的子域(crooss域)? 他們的網站上說,這是可能做到這一點,但我無法弄清楚如何,因爲我阻止這個消息(瀏覽器控制檯):TinyMce 4 + ResponsiveFileManager跨域:阻止與起源的框架

未捕獲拋出:DOMException:阻止原產框架「mywebsite.local」從訪問一個跨源幀。

有關的信息,我想將圖像存儲在域如mywebsite.local和TinyMCE的是一個子域:admin.mywebsite.local

這裏是我的代碼:

// TinyMCE 
    tinymce.init({ 
    ... 

    // Responsivefilemanager 
    filemanager_crossdomain: true, 
    external_filemanager_path:"http://mywebsite.local/filemanager/", 
    external_plugins: { "filemanager" : "http://mywebsite.local/filemanager/plugin.min.js"}, 

    ... 
}); 

請幫助它幾個小時,我試圖弄清楚這一點! Thanx!

回答

0

您看到的問題是您正在嘗試創建CORS(跨源資源共享)請求,並且承載文件管理器的服務器未返回標頭以允許CORS請求。

本網站提供了一個設置CORS的好概述:https://enable-cors.org/

相關問題