| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- var json = [
- {
- rank: 1,
- id: 1,
- title: "Lisa",
- content: "lisa"
- },
- {
- rank: 2,
- id: 2,
- title: "is",
- content: "good"
- },
- {
- rank: 3,
- id: 3,
- title: "good",
- content: "bad"
- },
- {
- rank: 4,
- id: 4,
- title: "and",
- content: "is"
- },
- {
- rank: 5,
- id: 5,
- title: "good",
- content: "???"
- },
- {
- rank: 6,
- id: 5,
- title: "and",
- content: "test test"
- },
- {
- rank: 7,
- id: 5,
- title: "good",
- content: "lalala"
- },
- {
- rank: 8,
- id: 5,
- title: "and",
- content: "bad"
- },
- {
- rank: 9,
- id: 5,
- title: "bad",
- content: "good"
- },
- {
- rank: 10,
- id: 5,
- title: "fat",
- content: "and"
- }
- ]
- module.exports = {
- searchResult: json
- }
|