标签:null 失败 lan 参数 ror article npm epo log
qs是一个流行的查询参数序列化和解析库。可以将一个普通的object序列化成一个查询字符串,或者反过来将一个查询字符串解析成一个object,帮助我们查询字符串解析和序列化字符串。
安装npm install qs
导入import qs from ‘qs‘
序列化
config.data = qs.parse(config.data);
// 阅读数
const UpRead = (info: any): void => {
if (info == null) {
console.log(info);
return;
} else {
console.log(info.read);
info.read++;
console.log(state.id + "-" + info.read);
proxy
.$api({
// 更新
url: "/api/SnArticle/UpdatePortionAsync?type=read",
method: "put",
data: info
})
.then((res: any) => {
if (res.status === 200) {
// console.log("1");
} else {
alert("更新失败");
}
})
.catch(console.error.bind(console));
}
};
标签:null 失败 lan 参数 ror article npm epo log
原文地址:https://www.cnblogs.com/ouyangkai/p/14750565.html