Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -45,16 +45,16 @@ router.get('/', function(req, res, next) { | ... | @@ -45,16 +45,16 @@ router.get('/', function(req, res, next) { |
45 | var selectedIndex = ranker.getSelectedIndex(Rank, 3); | 45 | var selectedIndex = ranker.getSelectedIndex(Rank, 3); |
46 | // 문장의 순서대로 정렬하는 게 문맥상 자연스러운 듯. | 46 | // 문장의 순서대로 정렬하는 게 문맥상 자연스러운 듯. |
47 | selectedIndex.sort(); | 47 | selectedIndex.sort(); |
48 | - var result = ''; | 48 | + var result = []; |
49 | for(var i = 0; i < 3; i++){ | 49 | for(var i = 0; i < 3; i++){ |
50 | for(var j = 0; j < sentences.length; j++){ | 50 | for(var j = 0; j < sentences.length; j++){ |
51 | if(selectedIndex[i] === j){ | 51 | if(selectedIndex[i] === j){ |
52 | - result += sentences[j] + ' '; | 52 | + result[i] = sentences[j]; |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } | 55 | } |
56 | 56 | ||
57 | - return res.render('index', { title: result }); | 57 | + return res.json({ shorten : result }); |
58 | } | 58 | } |
59 | ); | 59 | ); |
60 | 60 | ... | ... |
-
Please register or login to post a comment