mirror of
https://github.com/bvanroll/yahoo-thing.git
synced 2025-08-28 11:32:49 +00:00
YES
This commit is contained in:
2
index.js
2
index.js
@@ -54,7 +54,7 @@ app.post('/search', (req, res) => {
|
||||
temp = client.db().collection("questions").find(query).toArray(function(err, data) {
|
||||
arr = splice(data)
|
||||
page = 0 + parseInt(req.body.page, 10)
|
||||
res.render('index', {search:req.body.title, data: arr[page],page:page,pagenums:Array.from(new Array(arr.length), (x,i) => i),maxpages:arr.length})
|
||||
res.render('index', {title:req.body.title, data: arr[page],page:page,pagenums:Array.from(new Array(arr.length), (x,i) => i),maxpages:arr.length})
|
||||
client.close()
|
||||
})
|
||||
});
|
||||
|
@@ -21,10 +21,10 @@
|
||||
</div>
|
||||
<div class='bottomthing'>
|
||||
<form action='/search' method='post'>
|
||||
<input type="hidden" value="{{this.search}}">
|
||||
<input type="hidden" name='title' value="{{this.title}}">
|
||||
<ul>
|
||||
{{#each this.pagenums}}
|
||||
<li><input type="submit" value="{{this}}">{{this}}</input></li>
|
||||
<li><input type="submit" name='page' value="{{this}}">{{this}}</input></li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</form>
|
||||
|
Reference in New Issue
Block a user