ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
| 组件包名称 | 组件路径 | | --- | --- | | Md5加密组件 | /components/md5.js | | Net网络请求 | /components/sbh-net/app.js | * 调用方式 : 全局main.js输入 ~~~ import Net from './components/sbh-net/app.js' ~~~ * Md5加密案例 ~~~ this.md5('123'); ~~~ * 获取实时10位时间戳案例 ~~~ this.time(); ~~~ * 网络请求 ~~~ let data = {}; data.u_id = this.u_id; this.Net('url',data).then(res => { if(!res.succeed){ return false; } console.log(res) }); ~~~