前端如何post數據?
在提交表單的時候,method用post方式提交。
<form action="/post.html" method="post"><input type="text" name="company" placeholder="公司名稱">
<input type="text" name="username" placeholder="用戶姓名">
<input type="text" name="phone" placeholder="用戶電話">
<input type="text" name="email" placeholder="用戶郵箱">
<button type="submit">提交</button>
</form>