Để lấy được giá trị state và result của promise, cần dùng các phương thức then và catch của nó
Nhớ rằng, resolve, reject là các hàm được
Đối số đầu tiên của then
là một hàm sẽ chạy khi promise được giải quyết và nhận kết quả từ hàm resolve()
.
Đối số thứ hai của then
là một hàm sẽ chạy khi promise bị từ chối và nhận kết quả.
The first argument of .then
is a function that runs when the promise is resolved and receives the result.
The second argument of .then
is a function that runs when the promise is rejected and receives the error.
Vật thể promise có 2 thuộc tính là state và result, và 3 phương thức là then, catch, và finally
Nguồn:: Promise