3***@qq.com
3***@qq.com
  • 发布:2022-08-18 22:42
  • 更新:2024-04-25 10:30
  • 阅读:545

安装uniCloud-admin后,uni-stater 的list页面显示权限校验未通过

分类:uni-app

如图。
排查了数据库权限没问题,不知道问题发生在哪里,应该如何继续排查?

2022-08-18 22:42 负责人:DCloud_uniCloud_WYQ 分享
已邀请:
2***@qq.com

2***@qq.com

烂到根了,两年解决不了一个这么基础的问题

3***@qq.com

3***@qq.com (作者) - 赛博小曼

用本地云函数调用显示没有权限,
连接云端函数就正常了

虽然解决了,还想请教下原理,谢谢

  • DCloud_uniCloud_WYQ

    连本地的时候访问的这个列表的schema还有用户的token发一下

    2022-08-19 16:10

  • 3***@qq.com (作者)

    回复 DCloud_uniCloud_WYQ: 抱歉,这么晚才回复

    麻烦指导一下,token在哪里查看


    'opendb-news-articles' 如下:

    {

    "bsonType": "object",

    "required": [

    "user_id",

    "title",

    "content"

    ],

    "permission": {

    "read": "doc.uid == auth.uid && doc.article_status == 0 || doc.article_status == 1",

    "create": "auth.uid != null",

    "update": "doc.user_id == auth.uid",

    "delete": "doc.user_id == auth.uid"

    },

    "properties": {

    "_id": {

    "description": "存储文档 ID(用户 ID),系统自动生成"

    },

    "user_id": {

    "bsonType": "string",

    "description": "文章作者ID, 参考uni-id-users 表",

    "foreignKey": "uni-id-users._id",

    "defaultValue": {

    "$env": "uid"

    }

    },

    "category_id": {

    "bsonType": "string",

    "title": "分类",

    "description": "分类 id,参考uni-news-categories表",

    "foreignKey": "opendb-news-categories._id",

    "enum": {

    "collection": "opendb-news-categories",

    "field": "name as text, _id as value"

    }

    },

    "title": {

    "bsonType": "string",

    "title": "标题",

    "description": "标题",

    "label": "标题",

    "trim": "both"

    },

    "content": {

    "bsonType": "string",

    "title": "文章内容",

    "description": "文章内容",

    "label": "文章内容",

    "trim": "right"

    },

    "excerpt": {

    "bsonType": "string",

    "title": "文章摘录",

    "description": "文章摘录",

    "label": "摘要",

    "trim": "both"

    },

    "article_status": {

    "bsonType": "int",

    "title": "文章状态",

    "description": "文章状态:0 草稿箱 1 已发布",

    "defaultValue": 0,

    "enum": [

    {

    "value": 0,

    "text": "草稿箱"

    },

    {

    "value": 1,

    "text": "已发布"

    }

    ]

    },

    "view_count": {

    "bsonType": "int",

    "title": "阅读数量",

    "description": "阅读数量",

    "permission": {

    "write": false

    }

    },

    "like_count": {

    "bsonType": "int",

    "description": "喜欢数、点赞数",

    "permission": {

    "write": false

    }

    },

    "is_sticky": {

    "bsonType": "bool",

    "title": "是否置顶",

    "description": "是否置顶",

    "permission": {

    "write": false

    }

    },

    "is_essence": {

    "bsonType": "bool",

    "title": "阅读加精",

    "description": "阅读加精",

    "permission": {

    "write": false

    }

    },

    "comment_status": {

    "bsonType": "int",

    "title": "开放评论",

    "description": "评论状态:0 关闭 1 开放",

    "enum": [

    {

    "value": 0,

    "text": "关闭"

    },

    {

    "value": 1,

    "text": "开放"

    }

    ]

    },

    "comment_count": {

    "bsonType": "int",

    "description": "评论数量",

    "permission": {

    "write": false

    }

    },

    "last_comment_user_id": {

    "bsonType": "string",

    "description": "最后回复用户 id,参考uni-id-users 表",

    "foreignKey": "uni-id-users._id"

    },

    "avatar": {

    "bsonType": "string",

    "title": "封面大图",

    "description": "缩略图地址",

    "label": "封面大图",

    "trim": "both"

    },

    "publish_date": {

    "bsonType": "timestamp",

    "title": "发表时间",

    "description": "发表时间",

    "defaultValue": {

    "$env": "now"

    }

    },

    "publish_ip": {

    "bsonType": "string",

    "title": "发布文章时IP地址",

    "description": "发表时 IP 地址",

    "forceDefaultValue": {

    "$env": "clientIP"

    }

    },

    "last_modify_date": {

    "bsonType": "timestamp",

    "title": "最后修改时间",

    "description": "最后修改时间",

    "defaultValue": {

    "$env": "now"

    }

    },

    "last_modify_ip": {

    "bsonType": "string",

    "description": "最后修改时 IP 地址",

    "forceDefaultValue": {

    "$env": "clientIP"

    }

    },

    "mode": {

    "bsonType": "number",

    "title": "排版显示模式",

    "description": "排版显示模式,如左图右文、上图下文等"

    }

    }

    }

    2022-08-21 17:58

  • DCloud_uniCloud_WYQ

    回复 3***@qq.com: 发一下错误信息对应的对应的网络请求里面的body部分

    2022-09-20 11:32

2***@qq.com

2***@qq.com

我也遇到同样的问题,连接云端函数就直接报错,请问是怎么解决的

1***@qq.com

1***@qq.com

求解~~~

要回复问题请先登录注册