searchResult.js 836 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. var json = [
  2. {
  3. rank: 1,
  4. id: 1,
  5. title: "Lisa",
  6. content: "lisa"
  7. },
  8. {
  9. rank: 2,
  10. id: 2,
  11. title: "is",
  12. content: "good"
  13. },
  14. {
  15. rank: 3,
  16. id: 3,
  17. title: "good",
  18. content: "bad"
  19. },
  20. {
  21. rank: 4,
  22. id: 4,
  23. title: "and",
  24. content: "is"
  25. },
  26. {
  27. rank: 5,
  28. id: 5,
  29. title: "good",
  30. content: "???"
  31. },
  32. {
  33. rank: 6,
  34. id: 5,
  35. title: "and",
  36. content: "test test"
  37. },
  38. {
  39. rank: 7,
  40. id: 5,
  41. title: "good",
  42. content: "lalala"
  43. },
  44. {
  45. rank: 8,
  46. id: 5,
  47. title: "and",
  48. content: "bad"
  49. },
  50. {
  51. rank: 9,
  52. id: 5,
  53. title: "bad",
  54. content: "good"
  55. },
  56. {
  57. rank: 10,
  58. id: 5,
  59. title: "fat",
  60. content: "and"
  61. }
  62. ]
  63. module.exports = {
  64. searchResult: json
  65. }