| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const comment = {
- status: "成功",
- code: 200,
- data: [
- {
- id: 'comment0001', //主键id
- date: '2018-07-05 08:30', //评论时间
- ownerId: 'talents100020', //文章的id
- fromId: 'errhefe232213', //评论者id
- fromName: '犀利的评论家', //评论者昵称
- fromAvatar: 'http://ww4.sinaimg.cn/bmiddle/006DLFVFgy1ft0j2pddjuj30v90uvagf.jpg', //评论者头像
- likeNum: 3, //点赞人数
- content: 'xxx', //评论内容
- reply: [ //回复,或子评论
- {
- id: '34523244545', //主键id
- commentId: 'comment0001', //父评论id,即父亲的id
- fromId: 'observer223432', //评论者id
- fromName: '夕阳红', //评论者昵称
- fromAvatar: 'https://wx4.sinaimg.cn/mw690/69e273f8gy1ft1541dmb7j215o0qv7wh.jpg', //评论者头像
- toId: 'errhefe232213', //被评论者id
- toName: '犀利的评论家', //被评论者昵称
- toAvatar: 'http://ww4.sinaimg.cn/bmiddle/006DLFVFgy1ft0j2pddjuj30v90uvagf.jpg', //被评论者头像
- content: 'xxx', //评论内容
- date: '2025-01-05 08:35' //评论时间
- },
- {
- id: '34523244545',
- commentId: 'comment0001',
- fromId: 'observer567422',
- fromName: '清晨一缕阳光',
- fromAvatar: 'http://imgsrc.baidu.com/imgad/pic/item/c2fdfc039245d688fcba1b80aec27d1ed21b245d.jpg',
- toId: 'observer223432',
- toName: '夕阳红',
- toAvatar: 'https://wx4.sinaimg.cn/mw690/69e273f8gy1ft1541dmb7j215o0qv7wh.jpg',
- content: 'xxx!',
- date: '2025-071-05 08:50'
- }
- ]
- }
- ]
- };
-
- export {comment}
|