Browse Source

alert json

ming 3 năm trước cách đây
mục cha
commit
d4062d37c8
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      api/static/script_util.js

+ 4 - 1
api/static/script_util.js

@@ -17,7 +17,10 @@ function get_script() {
     if (xhr.readyState === 4) {
         console.log(xhr.status);
         console.log(xhr.responseText);
-        dataArr = xhr.responseText.split(',');
+        replaced = xhr.responseText.replace('"','');
+        replaced = replaced.replace('[','');
+        replaced = replaced.replace(']','');
+        dataArr = replaced.split(',');
         putscript();
     }};
   var data = `{"name_hash": `+name_hash+`}`;