
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
miniprogram-wxios
Advanced tools
针对 wx.request 接口进行二次封装。
promise
调用风格wxios(config)
wxios({
url: 'http://localhost/api',
method: 'post',
data: {
test: '1'
}
}).then(function (response) {
console.log(response);
});
wxios(url[, config])
wxios(
'http://localhost/api',
{
method: 'post',
data: {
test: '1'
}
}
).then(function (response) {
console.log(response);
});
请求 别名
wxios.request(config)
wxios.get(url, data[, config])
wxios.post(url, data[, config])
wxios.delete(url, data[, config])
wxios.head(url, data[, config])
wxios.put(url, data[, config])
wxios.all(promises)
var p1 = Promise.resolve();
var p2 = Promise.resolve();
wxios.all([p1, p2])
.then(function(resList){
console.log(resList);
});
wxios.create([defaultConfig])
通过 wxios.create([defaultConfig])
创建一个全新的 wxios实例。
var instance = wxios.create({
baseURL: 'http://localhost'
});
新实例拥有 wxios下挂载的所有request方法。
请求拦截器
request拦截器 : wxios.interceptors.request
// 添加一个拦截器
// 同时返回一个 拦截器标识
var interceptorId = wxios.interceptors.request.use(function(config) {
// do something...
// TODO:
// 每个拦截器都必须返回 config
return config;
});
// 删除一个拦截器
wxios.interceptors.request.eject(interceptorId);
response拦截器 : wxios.interceptors.response
// 添加一个拦截器
// 同时返回一个 拦截器标识
var interceptorId = wxios.interceptors.response.use(function(response) {
// do something...
// TODO:
// 每个拦截器都必须返回 response
return response;
});
// 删除一个拦截器
wxios.interceptors.response.eject(interceptorId);
Default Config
{
// 公共接口前缀
baseURL: '',
// 公共 headers 配置
headers: {},
// 接口超时时间, 单位 ms, 默认为 0,不做超时处理
timeout: 0
}
wxios.defaults.baseURL = 'http://localhost';
wxios.defaults.headers.common['content-type'] = 'application/json';
wxios.default.headers.post['content-type'] = 'application/json';
取消请求
wxios.CancelToken
var cancelToken = wxios.CancelToken.source();
wxios.post('/test', {}, {
cancelToken: cancelToken.token
});
// cancel
cancelToken.cancel(errorMessage);
FAQs
针对 wx.request 接口进行二次封装。
We found that miniprogram-wxios demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.