1
我使用的是最新版本的TinyMCE,並且我希望在用戶單擊插入圖像時集成Google Drive Picker。如何將Google Picker與TinyMCE集成?
從TinyMCE文檔中我看到我應該使用file_browser_callback參數,但我遇到了一些問題。首先,我設法附加了Google Picker,但插入圖像彈出窗口保留在頂部,我無法選擇文件。即使我解決了這個問題,我該如何設置Google Picker回調函數中的文本框值?下面你可以看到我的代碼,Google Picker code is pretty standard,所以我不會粘貼它。
var picker;
tinymce.init({
//other init parameters...
file_browser_callback: function(field_name, url, type, win) {
picker.setVisible(true);
win.document.getElementById(field_name).value = 'my browser value';
}
});
function createPicker() {
// Here I build the Picker...
// var picker = ...
}
function pickerCallback(data) {
//TODO: Find a way to set textbox value with the URL of the Image selected from Drive
}
幹得不錯,不敢相信我沒想到:) – raz3r 2014-10-10 08:56:11
很高興幫助... :) – Surya 2014-10-10 09:10:42