|
@@ -1,28 +1,28 @@
|
|
|
-module.exports.UserList = [
|
|
|
+module.exports.TravelUserList = [
|
|
|
{
|
|
|
"objectId": "user1",
|
|
|
"createdAt": "2024-01-01T10:00:00.000Z",
|
|
|
- "username": "traveler_01",
|
|
|
- "email": "traveler01@example.com",
|
|
|
+ "username": "Delancey",
|
|
|
+ "email": "789@example.com",
|
|
|
"profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img1"}
|
|
|
},
|
|
|
{
|
|
|
"objectId": "user2",
|
|
|
"createdAt": "2024-01-02T11:00:00.000Z",
|
|
|
- "username": "nature_lover",
|
|
|
- "email": "naturelover@example.com",
|
|
|
+ "username": "John",
|
|
|
+ "email": "456@example.com",
|
|
|
"profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img2"}
|
|
|
},
|
|
|
{
|
|
|
"objectId": "user3",
|
|
|
"createdAt": "2024-01-03T12:00:00.000Z",
|
|
|
- "username": "foodie_explorer",
|
|
|
- "email": "foodieexplorer@example.com",
|
|
|
+ "username": "jiang",
|
|
|
+ "email": "123@example.com",
|
|
|
"profilePicture": {"__type": "Pointer", "className": "Image", "objectId": "img3"}
|
|
|
}
|
|
|
];
|
|
|
|
|
|
-module.exports.PostList = [
|
|
|
+module.exports.TravelPostList = [
|
|
|
{
|
|
|
"objectId": "post1",
|
|
|
"createdAt": "2024-01-05T09:00:00.000Z",
|
|
@@ -30,7 +30,7 @@ module.exports.PostList = [
|
|
|
"content": "南昌的米粉真的非常好吃,推荐大家去尝试!",
|
|
|
"location": {"__type": "GeoPoint", "latitude": 28.682, "longitude": 115.857},
|
|
|
"privacy": "公开",
|
|
|
- "user": {"__type": "Pointer", "className": "User", "objectId": "user1"},
|
|
|
+ "user": {"__type": "Pointer", "className": "TravelUser", "objectId": "user1"},
|
|
|
"tags": [
|
|
|
{"__type": "Pointer", "className": "Tag", "objectId": "tag1"},
|
|
|
{"__type": "Pointer", "className": "Tag", "objectId": "tag2"}
|
|
@@ -47,7 +47,7 @@ module.exports.PostList = [
|
|
|
"content": "推荐大家去八一起义纪念馆,了解南昌的历史。",
|
|
|
"location": {"__type": "GeoPoint", "latitude": 28.678, "longitude": 115.866},
|
|
|
"privacy": "公开",
|
|
|
- "user": {"__type": "Pointer", "className": "User", "objectId": "user2"},
|
|
|
+ "user": {"__type": "Pointer", "className": "TravelUser", "objectId": "user2"},
|
|
|
"tags": [
|
|
|
{"__type": "Pointer", "className": "Tag", "objectId": "tag3"}
|
|
|
],
|
|
@@ -62,7 +62,7 @@ module.exports.PostList = [
|
|
|
"content": "南昌的滕王阁风景如画,适合拍照留念。",
|
|
|
"location": {"__type": "GeoPoint", "latitude": 28.685, "longitude": 115.892},
|
|
|
"privacy": "私密",
|
|
|
- "user": {"__type": "Pointer", "className": "User", "objectId": "user3"},
|
|
|
+ "user": {"__type": "Pointer", "className": "TravelUser", "objectId": "user3"},
|
|
|
"tags": [
|
|
|
{"__type": "Pointer", "className": "Tag", "objectId": "tag4"},
|
|
|
{"__type": "Pointer", "className": "Tag", "objectId": "tag5"}
|