2
我想填充我的CKeditor對話框選擇框與Ajax。下面是我的plugin.js文件:CKeditor填充對話框選擇與Ajax
...
{
type : 'select',
id : 'style',
label : 'Style',
setup : CKEDITOR.ajax.post( '.../ckeditor/plugins/simpleLink/ajax.php', JSON.stringify({ foo: 'bar' }), 'application/json', function(data) {
console.log(data);
}),
items : [ ['--- Select something ---', 0] ],
commit : function(data)
{
data.style = this.getValue();
}
}
...
阿賈克斯輸出看起來是這樣的:
["Basketball","basketball"],["Baseball","baseball"],["Hockey","hockey"]
我真的想知道如何得到結果輸出到「項目」。從我的角度來看,我嘗試了一切。 有人可以幫我嗎?