我想用来自外部字符串的动态参数实例化一个新对象。
这是代码:
const editorInstance = new Editor('#edit',
{
placeholderText: null,
theme: 'dark',
language: 'en',
linkList:[{text: 'test',href: 'test',target: '_blank'}],
events: {
initialized: function () {
const editor = this
this.el.closest('form').addEventListener('submit', function (e) {
jQuery('#gs_editor_content').hide();
jQuery(this).append('<div class="loadingDiv"> </div>');
o.script
});
texta = jQuery('#myeditor').find('textarea');
targetFile = texta.attr('rel');
content = editor.$oel.val();
e.preventDefault();
var fd = new FormData();
fd.append( 'name' ,targetFile);
fd.append( 'html', editor.$oel.val() );
$.ajax({
url : 'http://localhost/Update',
type : 'POST',
data: fd,
processData : false,
contentType : false,
async : false,
success : function(data, textStatus, request) {}
});
jQuery('#myeditor').dialog("close");
}
}
}
)
linkList当我收到从我的服务器收到的新列表时,我需要在实例化我的对象之前修改参数。
我尝试使用 eval 或 parseFunction,但遇到意外的标识符错误。
知道我怎么能做到这一点吗?
ibeautiful
吃鸡游戏
MYYA
相关分类