# 我的收藏列表
~~~[api]
get:/user/favorites/my
page#分页查询 [可选]如:2,3
<<<
success
{
"code": 1,
"msg": "请求成功",
"data": [
{
"id": 7,
"title": "fad",
"url": "http://cmf5-api.im/portal/article/index/id/22/cid/1.html",
"description": "fad",
"create_time": 1496133161
},
{
"id": 6,
"title": "fasd",
"url": "http://cmf5-api.im/portal/article/index/id/16.html",
"description": "fasd",
"create_time": 1496128669
},
{
"id": 5,
"title": "fasdf",
"url": "http://cmf5-api.im/portal/article/index/id/31/cid/1.html",
"description": "fasdf",
"create_time": 1494143215
}
]
}
<<<
success 1.0.0 以后
{
"code": 1,
"msg": "请求成功",
"data": {
"list": [
{
"id": 10,
"user_id": 1,
"title": "test",
"url": "http://cmf5-api.im/portal/article/index/id/1/cid/1.html",
"description": "description",
"table_name": "portal_post",
"object_id": 21,
"create_time": 1528346429
},
{
"id": 9,
"user_id": 1,
"title": "test",
"url": "http://cmf5-api.im/portal/article/index/id/1/cid/1.html",
"description": "description",
"table_name": "portal_post",
"object_id": 2,
"create_time": 1504059294
},
{
"id": 8,
"user_id": 1,
"title": "test",
"url": "",
"description": "description",
"table_name": "portal_post",
"object_id": 12,
"create_time": 1504059199
},
{
"id": 7,
"user_id": 1,
"title": "fad",
"url": "http://cmf5-api.im/portal/article/index/id/22/cid/1.html",
"description": "fad",
"table_name": "portal_post",
"object_id": 22,
"create_time": 1496133161
},
{
"id": 6,
"user_id": 1,
"title": "fasd",
"url": "http://cmf5-api.im/portal/article/index/id/16.html",
"description": "fasd",
"table_name": "portal_post",
"object_id": 16,
"create_time": 1496128669
},
{
"id": 5,
"user_id": 1,
"title": "fasdf",
"url": "http://cmf5-api.im/portal/article/index/id/31/cid/1.html",
"description": "fasdf",
"table_name": "portal_post",
"object_id": 31,
"create_time": 1494143215
}
]
}
}
~~~
## 小程序代码
```
api.get({
url: 'user/favorites/my',
data: {
},
success: data => {
if (data.code == 1) {
// 成功
}
if (data.code == 0) {
// 失败
}
console.log(data);
}
});
```
- 介绍
- 环境配置
- 规范
- 状态码说明
- 参数规范草案
- 版本号
- 控制器
- 资源控制器模板
- 成功返回
- 错误返回
- 路由
- 应用
- 基类控制器
- 应用开发流程
- API
- 用户
- 发送邮箱或手机验证码
- 用户注册
- 用户登录
- 文件上传
- 密码修改
- 密码重置
- 用户退出
- 用户手机号绑定
- 用户邮箱绑定
- 用户信息获取
- 用户信息修改
- 余额记录(未发布)
- 积分记录(未发布)
- 余额转账(未发布)
- 小程序
- 用户登录
- 评论
- 评论列表
- 我的评论列表
- 添加评论
- 删除评论
- 门户应用
- 文章
- 文章列表
- 文章列表
- 分类文章列表
- 推荐文章列表
- 会员文章列表
- 会员添加文章
- 会员编辑文章
- 会员删除文章
- 获取文章
- 我的文章列表
- 文章搜索
- 文章点赞
- 取消文章点赞
- 文章收藏
- 取消文章收藏
- 分类
- 分类列表
- 获取分类
- 子分类列表
- 页面
- 页面列表
- 获取页面
- 标签
- 热门标签列表
- 标签文章列表
- 幻灯片获取
- 收藏
- 我的收藏列表
- 添加收藏
- 取消收藏
- 判断是否已收藏
- 后台
- 管理员登录
- 管理员退出
- 模板
- 扩展属性
- 小程序开发
- 版本发布
- 小程序模板下载
- 演示代码安装
- 新建页面
- API 请求
- 附录
- 升级日志
- 升级指导