在Angular 9中,可以使用async
和await
关键字来挂起请求。以下是一个示例代码,演示了如何在Angular 9中使用async
和await
来挂起请求:
首先,确保你已经在你的项目中安装了HttpClientModule
,并在你的模块中引入它:
import { HttpClientModule } from '@angular/common/http';
@NgModule({
imports: [
HttpClientModule
],
...
})
export class AppModule { }
然后,在你的组件中引入HttpClient
:
import { HttpClient } from '@angular/common/http';
constructor(private http: HttpClient) { }
接下来,在你的组件中创建一个异步函数来发送HTTP请求,并在函数前面加上async
关键字:
async makeRequest() {
try {
const response = await this.http.get('https://api.example.com/data').toPromise();
console.log(response);
} catch (error) {
console.error(error);
}
}
在上面的示例中,我们使用await
关键字将HTTP请求挂起,直到请求完成为止。如果请求成功,将会打印响应数据;如果请求失败,将会打印错误信息。
最后,在你的模板中添加一个按钮来触发makeRequest
函数:
现在,当你点击按钮时,将会触发makeRequest
函数,并在请求完成后打印响应数据或错误信息。
请注意,上述代码仅仅是一个示例,实际情况中你可能需要根据你的需求进行适当的修改。