无论百度小程序还是微信小程序都是通过api调用数据,网站只需要提供一个能输出json格式的页面就可以,比如微信小程序
- <script>
- wx.request({
- url: '自定义文件api', // 仅为示例,并非真实的接口地址
- data: { x: '', y: '' }, //要传的参数
- header: { 'content-type': 'application/json' }, // 默认值
- success(res) {
- //接口调用失败的回调函数 console.log(res.data)
- },
- fail(err) {
- }, //接口调用失败的回调函数 console.log('错误信息:' + err.errMsg);
- complete() {
- }
- })//接口调用结束的回调函数(调用成功、失败都会执行)
- </script>
复制代码自定义文件api可是通过自定义文件来实现,看帮助:
http://www.pageadmin.net/help/30.cshtml只需要输出json格式数据,可以根据自己需求来设计接口文件