catch json-parse error

This commit is contained in:
ruesin 2018-11-29 15:04:18 +08:00
parent 93f0d7a1ce
commit 1b50ce6015

View file

@ -679,9 +679,13 @@ function uploadImage(editor) {
xmlhttp.send(formData);
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var res = JSON.parse(xmlhttp.responseText);
if(res.url) {
editor.codemirror.replaceSelection("![" + (res.name || file.name) + "](" + res.url + ")");
try {
var res = JSON.parse(xmlhttp.responseText);
if(res.url) {
editor.codemirror.replaceSelection("![" + (res.name || file.name) + "](" + res.url + ")");
}
} catch (e) {
editor.codemirror.replaceSelection("![]()");
}
}
};