2017-08-16 1 views
0

Babelではかなり新しいですし、ヘッダー "Content-Type"を "application/json"としてPOSTリクエストをしようとしています。 Requestのヘッダーを変更するためのドキュメントはありますか?BabelのRequestのデフォルトヘッダーを変更する

import Request from 'request-promise-native' 
    const result = await Request 
     .post(`some url`) 
     .auth(authId, secretToken,false) 
     .form({ 
     text: "hello" 
     }) 
    console.log(result); 
    return JSON.parse(result) 
+0

'Request'はバベルのtranspilerとどんな関係があるの? – Bergi

答えて

0

は、ヘッダーだけがそうのようなオブジェクトを追加します

.headers({ 
    'Content-Type': 'application/json' 
}) 
関連する問題