Unexpected keyword or identifier.
Jan Kila
04/12/2021 15:20:48Kan, wil, iemand uitleggen waarom deze melding?
In VSCode een rode slinger lijn onder 'async' met de melding:
"Unexpected keyword or identifier."
Ik heb dit al eerder op deze manier gedaan en dat ging goed, waarom dan nu niet: dat is m'n vraag.
Graag een reactie.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sendMail(url, bodyData)
.then(data => {
console.log('Returned from server: ', data)
})
.catch((error) => {
console.error('Error: ', error);
})
async sendMail(url, bodyData) {
// Wait for the response on the fetch() call
const response = await fetch(url, {
method: 'POST',
headers: {'Content-type': 'application/json'},
mode: 'same-origin',
credentials: 'same-origin',
body: JSON.stringify(bodyData)
});
// Only proceed when the first promise is resolved
const data = await response.text(); //If it's text you expect!
// Only proceed when the second promise is resolved
return data;
}
.then(data => {
console.log('Returned from server: ', data)
})
.catch((error) => {
console.error('Error: ', error);
})
async sendMail(url, bodyData) {
// Wait for the response on the fetch() call
const response = await fetch(url, {
method: 'POST',
headers: {'Content-type': 'application/json'},
mode: 'same-origin',
credentials: 'same-origin',
body: JSON.stringify(bodyData)
});
// Only proceed when the first promise is resolved
const data = await response.text(); //If it's text you expect!
// Only proceed when the second promise is resolved
return data;
}
In VSCode een rode slinger lijn onder 'async' met de melding:
"Unexpected keyword or identifier."
Ik heb dit al eerder op deze manier gedaan en dat ging goed, waarom dan nu niet: dat is m'n vraag.
Graag een reactie.
PHP hulp
23/11/2024 01:53:34Jan R
04/12/2021 16:20:35keyword async staat bij de functie, niet bij de aanroep.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
Jan Kila
04/12/2021 17:16:33Jan,
Dank voor de reactie, maar m.i. is dat precies wat ik doe:
sendMail(...) is de aanroep; en
async sendMail(...) de functie.
Dank voor de reactie, maar m.i. is dat precies wat ik doe:
sendMail(...) is de aanroep; en
async sendMail(...) de functie.