< script src= " https://unpkg.com/axios/dist/...;></script>
<script src="./js/Jquery.js"></script>
<script>
$.ajax({
url: "http://betai.yiboshi.com/sign/apply/info/addApplyInfo",
type: "POST",
data:{
test:22
},
dataType: "json",
success: function(data) {
}
});
axios.post("http://beta.yiboshi.com/sign/apply/info/addApplyInfo",{
test:222
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
axiosaxios