CommentInfoVo(commentId=null, commentUserId=null, commentUserName=null, commentContent=null, commentPic=null, commentSource=null, commentType=null, mId=null, pId=null) 转成JSON
时间: 2023-07-06 16:27:41 浏览: 132
转换成json
4星 · 用户满意度95%
转换成JSON的格式大致如下:
```
{
"commentId": null,
"commentUserId": null,
"commentUserName": null,
"commentContent": null,
"commentPic": null,
"commentSource": null,
"commentType": null,
"mId": null,
"pId": null
}
```
其中,属性名和属性值都被包含在双引号中,属性名和属性值之间用冒号分隔,多个属性之间用逗号分隔,最外层需要用花括号包裹。在这个例子中,所有属性的值都是null,因为没有给它们赋值。
阅读全文