ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 跟详情页查询一样,只不过model的值为classtype ``` // 利用微信API请求查询单条数据 // limit:1 必须为1,才是单条数据查询 wx.request({ url:'https://demo.jizhicms.cn/GetData/index', data:{ key: 123456, model:"classtype", id:1, limit:1}, method:'POST', header: { 'content-type': 'application/x-www-form-urlencoded' }, dataType:'json', success:function(res){ console.log(res); } }); ```