使用来自服务器的响应以 html 输出 [重复]

Posted

技术标签:

【中文标题】使用来自服务器的响应以 html 输出 [重复]【英文标题】:Using a response from server to output in html [duplicate] 【发布时间】:2018-09-04 11:05:54 【问题描述】:

我对 html 完全陌生,我想知道如何使用从服务器返回的 json 输出到 html 文件中。

更具体地说,我有一个 python 脚本,在执行时会给我一个 json 对象作为响应。我想通过浏览器将其打印在 html 文件中。我该怎么做?

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

【问题讨论】:

【参考方案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;
        ),
      );
  

【讨论】:

以上是关于使用来自服务器的响应以 html 输出 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

wkhtmltopdf 输出到产生 0 字节文件的 html 响应

服务器发送事件 Spring Webflux 返回事件名称以响应来自休息控制器的响应

如何以正确的方式解析来自 GET 响应的数据?

如何在全球范围内以最佳方式处理来自服务器的 401/403 响应

在返回 AJAX 响应之前阻止 Web 浏览器关闭 [重复]

如何在 React js 中将 HTML 模板呈现为来自 json 的响应