Browse Source

210730 bug fix

yukyo0821 3 năm trước cách đây
mục cha
commit
f7a948a132
1 tập tin đã thay đổi với 23 bổ sung8 xóa
  1. 23 8
      backstage/templates/tables/editor_table.html

+ 23 - 8
backstage/templates/tables/editor_table.html

@@ -119,6 +119,7 @@
       $("#myModal").modal();
       editTarget = url;
       //console.log(frontMatters);
+      //alert($('#cimage').val());
     });
   }
   function toggleDraft(obj, url) {
@@ -136,6 +137,23 @@
     });
   }
   function updateHeader() {
+    if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
+      axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({ data }) => {
+        if (data.success == "0") {
+          alert('已有重複的標題,請重新設定');
+          return;
+        }
+        else {
+          writeMd();
+        }
+      });
+    }
+    else {
+      writeMd();
+    }
+    location.reload();
+  }
+  function writeMd() {
     mdContent = "";
     mdContent += '---\n';
     mdContent += 'title: "' + $('#ctitle').val() + '"\n';
@@ -160,25 +178,22 @@
         'Content-Type': 'multipart/form-data'
       }
     }).then(({ data }) => {
+      $('#cfile').val("");
       if (data.success == "1") {
-        mdContent = mdContent.replace($('#cimage').val(), '/img/collection/' + data.file.url.substring(data.file.url.lastIndexOf('/')+1));
+        mdContent = mdContent.replace($('#cimage').val(), '/img/collection/' + data.file.url.substring(data.file.url.lastIndexOf('/') + 1));
         //alert(data.file.url.substring(data.file.url.lastIndexOf('/')+1));
       }
-      if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
-        axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({data}) => {
-          console.log(data)
-        });
-      }
+
       postData = {
         content: mdContent,
         url: editTarget
       };
       //console.log(mdContent);
-      axios.post(contentApiUrl + editTarget, json = postData);
+      axios.post(contentApiUrl + editTarget, json = postData).then(({ data }) => {
+      });
     });
   }
 
-
   $(function () {
 
     $("#dialog-form").hide();