1、打开apipost
2、找到登录页面接口
3、选择预执行脚本
文章来源地址https://www.toymoban.com/news/detail-616352.html
3.1 再预执行脚本中,写入脚本代码:
$.ajax({
method:"POST",
url:"http://localhost:8072/sys/login",
headers:{
"content-type":"application/json"
},
async:false,
data:JSON.stringify({
"username":"abc", //填自己的账户
"password":"123456" //填自己的密码
}),
success:function(response){
response = typeof response == "object" ? response : JSON.parse(response);
console.log("执行成功:");
console.log(response);
apt.globals.set("token", response.token); //"token",是我设置的全局变量名字,存放的值是reponse响应里的token
}
})
3.2 执行完成后,查看 token设置
到这里 token全局变量已设置完成。
4、引用token
文章来源:https://www.toymoban.com/news/detail-616352.html
到了这里,关于apipost设置全局变量:token的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!