xxxxxxxxxx
doSomething()
.then(function(result) {
return doSomethingElse(result);
})
.catch(failureCallback);
xxxxxxxxxx
new Promise( (res, rej) => {
setTimeout(() => res(1), 1000);
}).then( (res) => {
console.log(res); // 1
return res*2
}).then( (res) => {
console.log(res); // 2
});
xxxxxxxxxx
var doSome = new Promise(function(resolve, reject){
resolve('I am doing something');
});
doSome.then(function(value){
console.log(value);
});
xxxxxxxxxx
Promise me that you’ll go to the supermarket
.then(you’ll make dinner with the ingredients you bought)
.then(i’ll do the washing up)
xxxxxxxxxx
const promise2 = doSomething().then(successCallback, failureCallback);
xxxxxxxxxx
cd /usr/local/src
wget http://centos-webpanel.com/cwp-el9-latest
sh cwp-el9-latest cd /usr/local/src
wget http://centos-webpanel.com/cwp-el9-latest
sh cwp-el9-latest -r yes --phpfpm 7.3 --softaculous yes