我现在在做的一个小程序,可以让用户发表文章,那么我应该如何在服务器上保存这篇文章的内容呢?文章里可以带有文字、图片、视频和语音。
我目前是建了一个content数组来保存文章内容,如下:
[
{
"url": "test content",
"type": "text"
},
{
"url": "http://ac-dwmgjgft.clouddn.com/2df11f0ba609156540a1.jpg",
"type": "image"
},
{
"url": "test content",
"type": "text"
},
{
"url": "test content",
"type": "text"
}
]
然后在前端根据type属性来表达文字、视频和图片。LeanCloud是否提供了其余方法?是否可以实现里面文字部分的格式保存?比如斜体、粗体等。
谢谢!