axios.post
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
<script src="https://unpkg.com/axios/dist/axios.min.js"></script> | |
<title>axiosjs</title> | |
</head> | |
<body> | |
<script> | |
var params = new URLSearchParams(); | |
params.append('id', 100); | |
params.append('name', 'takahashi'); | |
axios.post("https://uperworld.com/axiosjs/post01.php", params) | |
.then(ret => alert(ret.data)); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment