我是HTML新手,我想知道如何使用json从服务器返回到html文件中输出。
更具体地说,我有一个python脚本,在执行时会给我一个json对象的响应。我想通过浏览器在html文件上打印出来。我怎么能这样做?
我是否以某种方式编写我的html以启动我的脚本并捕获对象?
答案 0 :(得分:1)
例如,您可以浏览此代码,在sweetalert中,您可以显示服务器的响应 的组件:强>
subscription(subscriptionEmail: Object) {
this.contactusService.newsLetterData(subscriptionEmail).subscribe(res => {
console.log(res);
swal({
title: res['Message'],
type: 'success'
});
this.router.navigate(['home']);
});
}
<强>服务强>
newsLetterData( newsLetter: {}): Observable<boolean> {
return this.http.post<any>(AUTHURL + '/PageSlammer/newsLetter', { newsLetter})
.pipe(
map(result => {
// localStorage.setItem('loggdIn', 'true');
return result;
}),
);
}