小程序學習有些地方需要後台,比如需要存儲數據到服務器,比如微信登錄。
hotapp有免費的小程序雲後台 包含基本的新增,查詢,修改,刪除操作,方便於學習,而且不需要微信appid 也可使用。
小程序微信手機調試appid,簡單解決辦法:http://www.wxapp-union.com/forum.php?mod=viewthread&tid=495
免費雲後台申請網址https://weixin.hotapp.cn/, 注冊就可以免費試用
request 合法域名為https://wxapi.hotapp.cn/
接口文檔
1. 新增 ,修改接口API
接口名稱:儲存數據
接口描述:進行數據儲存,字符串或者json對象
接口地址:https://wxapi.hotapp.cn/api/post
wx.request({ url: 'https://wxapi.hotapp.cn/api/post', data:{ appkey: 'XXXXXX', key: "key1", value: '我是內容' }, header: { 'content-Type': 'application/json' }, success: function(res){ console.log(res) } })
2. 查詢接口 API
接口名稱:取讀數據
接口描述:進行數據讀取,字符串或者json對象
接口地址:https://wxapi.hotapp.cn/api/get
wx.request({ url: 'https://wxapi.hotapp.cn/api/get', data:{ appkey: 'XXXXXX', key: "key1", }, header: { 'content-Type': 'application/json' }, success: function(res){ console.log(res) } })
3. 刪除接口API
4. 在線debug工具https://weixin.hotapp.cn/api/debug