微信小程序 封装api 接口文件文件 与 调用
作者:chrispy
function accountsIdentity(params, method) { return new Promise((resolve) => { wx.request({ url: `https://baidu.com/xxx/xxx`, data: params, method: method, success: (data) => { resolve(data.data) } }) })}module.exports =
function accountsIdentity(params, method) {
return new Promise((resolve) => {
wx.request({
url: `https://baidu.com/xxx/xxx`,
data: params,
method: method,
success: (data) => {
resolve(data.data)
}
})
})
}
module.exports = {
accountsIdentity
}
const axios = require('../../utils/axios.js') // 引用外部的js文件
const params = { type: 4, tenantId: 1164523599620829185 }
axios.accountsIdentity(params, 'get').then(res => {
console.log(res)
})
猜你喜欢
您可能感兴趣的文章:
- Jmeter压测
- test
- linux 查看端口号
- linux启动go程序两种方法
- nginx 配置golang
- php 验证数字
- php 数组长度
- html 左对齐
- html 打开新的页面
- php 翻页
- go 设置或清除环境变量 GOROOT 和 GOPATH
- term查询单个字段里含有单个关键词的文档,terms查询单个字段里含有多个关键词的文档
- Mac下xcrun: error: invalid active developer path
- golang替换字符串
- golang字符串替换
- golang is an unexported field of struct type
- 第一个 Go 程序
- H5 过滤输入法输入表情
- vue.js中使用Export2Excel导出Excel表格