使用服务器的响应以html

时间:2018-03-26 10:23:18

标签: python html json

我是HTML新手,我想知道如何使用json从服务器返回到html文件中输出。

更具体地说,我有一个python脚本,在执行时会给我一个json对象的响应。我想通过浏览器在html文件上打印出来。我怎么能这样做?

我是否以某种方式编写我的html以启动我的脚本并捕获对象?

1 个答案:

答案 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;
        }),
      );
  }