###やりたいこと
下に記載した[結果]を1,2,3と表示したい
前提
- axiosとPDOでデータベースからデータを引っ張ってきたい
- 複数の関数やVueインスタンスで同じデータを扱いたいので、グローバル変数に入れるようにしたい
- データを更新できるように、関数として宣言したい
- promise形式で返されても困るので、返り値はオブジェクト型にしたい
js
1data_get = function() { 2 return axios.get('../../php/select.php') 3 .then(function (response) { 4 return response.data; 5 }).catch(function (error) { 6 console.log(error); 7 }) 8} 9var aaa = "aaa"; 10data_get().then(function (x) { 11 console.log(1); 12 console.log(x); 13 aaa = x; 14 console.log(2); 15 console.log(aaa); 16}); 17console.log(3); 18console.log(aaa);
結果
chromeDeveropertoolConsole
13 2aaa 3 41 5[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}] 6 72 8[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
やったこと
関数をasyncにした
結果:かわらず
js
1data_get = function() { 2 return axios.get('../../php/select.php') 3 .then(function (response) { 4 return response.data; 5 }).catch(function (error) { 6 console.log(error); 7 }) 8} 9var aaa = "aaa"; 10data_get().then(function (x) { 11 console.log(1); 12 console.log(x); 13 aaa = x; 14 console.log(2); 15 console.log(aaa); 16}); 17console.log(3); 18console.log(aaa);
結果
chromeDeveropertoolConsole
13 2aaa 3 41 5[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}] 6 72 8[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}] 9```--- 10 11関数をasyncにして、returnにawaitを付けた 12結果:かわらず 13```js 14data_get = function() { 15 return await axios.get('../../php/select.php') 16 .then(function (response) { 17 return response.data; 18 }).catch(function (error) { 19 console.log(error); 20 }) 21} 22var aaa = "aaa"; 23data_get().then(function (x) { 24 console.log(1); 25 console.log(x); 26 aaa = x; 27 console.log(2); 28 console.log(aaa); 29}); 30console.log(3); 31console.log(aaa);
結果
chromeDeveropertoolConsole
13 2aaa 3 41 5[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}] 6 72 8[(14){…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
関数をasyncにして、実行時にawaitを付けた
結果:エラーが出た
js
1data_get = async function() { 2 return axios.get('../../php/select.php') 3 .then(function (response) { 4 return response.data; 5 }).catch(function (error) { 6 console.log(error); 7 }) 8} 9var aaa = "aaa"; 10await data_get().then(function (x) { 11 console.log(1); 12 console.log(x); 13 aaa = x; 14 console.log(2); 15 console.log(aaa); 16}); 17console.log(3); 18console.log(aaa);
結果
chromeDeveropertoolConsole
1Uncaught SyntaxError: await is only valid in async functions and the top level bodies of modules
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/10/17 04:21