产品动态
contentType(): string
类型 | 描述 |
string | ContentType 字段值 |
import http from 'pts/http';const data = open('./sample/tmp.js');export default function () {const formData = new http.FormData();formData.append('text', 'text');formData.append('file', http.file(data, 'tmp.js'));// 返回 "multipart/form-data; boundary=xxxxxx"console.log(formData.contentType());const resp = http.post('http://httpbin.org/post', formData.body(), {headers: {'Content-Type': formData.contentType()}});console.log('formData: ', resp.body);};
文档反馈