axios發送post請求,如何提交表單資料?

來源:互聯網
上載者:User

標籤:ons   www   tac   格式   預設   and   nod   json   string   

axios發送post請求,提交表單資料的方式

預設情況下,axios將JavaScript對象序列化為JSON。要以application / x-www-form-urlencoded格式發送資料,可以使用以下選項之一。

1. 瀏覽器。在瀏覽器中,您可以使用 URLSearchParams API,如下所示:

var params = new URLSearchParams();params.append(‘param1‘, ‘value1‘);params.append(‘param2‘, ‘value2‘);axios.post(‘/foo‘, params);

  請注意,並不是所有瀏覽器都支援 URLSearchParams(請參閱caniuse.com),但是可以使用polyfill。 或者,可以使用qs庫編碼資料:

var qs = require(‘qs‘);axios.post(‘/foo‘, qs.stringify({ ‘bar‘: 123 }));

2. Node.js。在node.js中,你可以使用 querystring 模組,如下所示:

var querystring = require(‘querystring‘);axios.post(‘http://something.com/‘, querystring.stringify({ foo: ‘bar‘ }));

 你也可以使用qs庫。

參考資料:
  1. https://www.npmjs.com/package/axios
  2. https://stackoverflow.com/questions/29136374/what-the-difference-between-qs-and-querystring

axios發送post請求,如何提交表單資料?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.