2016-09-09 10 views
0

。 変数を投稿することはできませんが、jsonデータを渡すことはできます。通過変数(スルーAPIをフェッチ)

このようなコードです。

 var check = 'hello'; 
    var check1 = 'hello1'; 

    fetch('http://localhost/react_task/react-webpack-boilerplate/php/api.php', { 
     method: 'post', 
     body: JSON.stringify({ 
      a: 2, // here passing variable doesn't work 
      b: 1 // like check and check1 does't show any values while passing here 
     }) 
    }) .then(function(response) { 
      if (response.status >= 200 && response.status < 300) { 
       return response.text() 
      } 
      throw new Error(response.statusText) 
     }) 
     .then(function(response) { 
      console.log(response); 
    }) 

JavaScriptから変数をPHPに渡す方法を教えてください。 ;;; 単なる例:

答えて

0

雅は、あなたは、Ajaxを使用してそれを行うことができます

var a=10; 
var b=20; 
$.post('abc.php',{param1:a,param2:b},function(data){ 
//here action on data returned or anything 
}); 
+0

私は..反応-JSとファイルタイプJSXに取り組んで作業するので、JSXファイル形式 –

+0

でAJAXを使用してそのハードと私は唯一のフェッチ使用したいのです... –

関連する問題