From ffe079d7c5bc327e6282c86ed3bcde2cbcd905ce Mon Sep 17 00:00:00 2001 From: hakasenyang Date: Fri, 6 Jan 2017 08:56:01 +0900 Subject: [PATCH] =?UTF-8?q?=EB=88=84=EB=9D=BD=20=EB=90=9C=20image=20?= =?UTF-8?q?=EA=B0=80=EC=A0=B8=EC=98=A4=EA=B8=B0=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 파일 누락으로 인해 마루마루에서 만화 사진을 가져올 수 없었던 문제 해결. --- app.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index b79e5a3..796b82b 100644 --- a/app.js +++ b/app.js @@ -1621,16 +1621,17 @@ exports.default = { getImageList: function getImageList(mangaId, title, href) { _jquery2.default.get({ - url: config.apiUrl + "/images.php", + url: config.apiUrl + "/index.php", data: { - href: href + num: href, + json: 1 }, success: function success(data) { if (typeof data == "string") { data = JSON.parse(data); } - _ApiActionCreators2.default.receiveImageList(mangaId, title, data.images); + _ApiActionCreators2.default.receiveImageList(mangaId, title, data.url); } }); }