1. 17 2月, 2015 1 次提交
  2. 03 2月, 2015 4 次提交
  3. 26 1月, 2015 1 次提交
  4. 25 1月, 2015 1 次提交
  5. 23 1月, 2015 7 次提交
  6. 11 12月, 2014 3 次提交
  7. 10 12月, 2014 3 次提交
  8. 09 12月, 2014 1 次提交
  9. 06 12月, 2014 2 次提交
  10. 03 12月, 2014 1 次提交
  11. 19 11月, 2014 1 次提交
  12. 05 11月, 2014 1 次提交
  13. 23 10月, 2014 1 次提交
    • N
      Automatic Content-Type for FormData uploads · 2f4d0b8b
      Niklas Närhinen 提交于
      When data passed to axios is of type FormData we have to let the browser
      create the Content-Type header so that the boundaries will get right
      etc.
      
      Usage:
      
      ```js
      var data = new FormData();
      data.append('field', 'some string');
      data.append('file', someFile);
      
      var opts = {
        transformRequest: function(data) { return data; }
      };
      
      axios.post('/fileupload', data, opts);
      
      ```
      2f4d0b8b
  14. 16 10月, 2014 3 次提交
  15. 06 10月, 2014 3 次提交
  16. 30 9月, 2014 3 次提交
  17. 29 9月, 2014 1 次提交
  18. 23 9月, 2014 3 次提交