data.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. module.exports.currentUserList = [
  2. {
  3. "objectId": "user1",
  4. "createdAt": "2024-01-01T10:00:00.000Z",
  5. "username": "Delancey",
  6. "email": "789@example.com",
  7. "profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img1"}
  8. },
  9. {
  10. "objectId": "user2",
  11. "createdAt": "2024-01-02T11:00:00.000Z",
  12. "username": "John",
  13. "email": "456@example.com",
  14. "profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img2"}
  15. },
  16. {
  17. "objectId": "user3",
  18. "createdAt": "2024-01-03T12:00:00.000Z",
  19. "username": "jiang",
  20. "email": "123@example.com",
  21. "profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img3"}
  22. }
  23. ];
  24. module.exports.TravelPostList = [
  25. {
  26. "objectId": "post1",
  27. "createdAt": "2024-01-05T09:00:00.000Z",
  28. "title": "南昌的美食之旅",
  29. "content": "南昌的米粉真的非常好吃,推荐大家去尝试!",
  30. "location": {"__type": "GeoPoint", "latitude": 28.682, "longitude": 115.857},
  31. "privacy": "公开",
  32. "user": {"__type": "Pointer", "className": "currentUser", "objectId": "user1"},
  33. "tags": [
  34. {"__type": "Pointer", "className": "Tag", "objectId": "tag1"},
  35. {"__type": "Pointer", "className": "Tag", "objectId": "tag2"}
  36. ],
  37. "images": [
  38. {"__type": "Pointer", "className": "Image", "objectId": "img4"},
  39. {"__type": "Pointer", "className": "Image", "objectId": "img5"}
  40. ]
  41. },
  42. {
  43. "objectId": "post2",
  44. "createdAt": "2024-01-06T10:30:00.000Z",
  45. "title": "南昌的文化景点",
  46. "content": "推荐大家去八一起义纪念馆,了解南昌的历史。",
  47. "location": {"__type": "GeoPoint", "latitude": 28.678, "longitude": 115.866},
  48. "privacy": "公开",
  49. "user": {"__type": "Pointer", "className": "currentUser", "objectId": "user2"},
  50. "tags": [
  51. {"__type": "Pointer", "className": "Tag", "objectId": "tag3"}
  52. ],
  53. "images": [
  54. {"__type": "Pointer", "className": "Image", "objectId": "img6"}
  55. ]
  56. },
  57. {
  58. "objectId": "post3",
  59. "createdAt": "2024-01-07T14:00:00.000Z",
  60. "title": "南昌的自然风光",
  61. "content": "南昌的滕王阁风景如画,适合拍照留念。",
  62. "location": {"__type": "GeoPoint", "latitude": 28.685, "longitude": 115.892},
  63. "privacy": "私密",
  64. "user": {"__type": "Pointer", "className": "currentUser", "objectId": "user3"},
  65. "tags": [
  66. {"__type": "Pointer", "className": "Tag", "objectId": "tag4"},
  67. {"__type": "Pointer", "className": "Tag", "objectId": "tag5"}
  68. ],
  69. "images": [
  70. {"__type": "Pointer", "className": "Image", "objectId": "img7"},
  71. {"__type": "Pointer", "className": "Image", "objectId": "img8"}
  72. ]
  73. }
  74. ];