当我查看'源代码'时,我从apis获取http请求的任何人员都有问题,看起来工作人员没有从服务器上来。
所以我可以在源代码中看到静态html但http请求中没有任何内容......
任何人都知道什么可能是个问题?
我正在使用universal-cli
修改
这是来自 这是现场示例:http://pushsc.com/show/code/58bc83760a58d602a0b99d14检查html的源代码...它渲染evertying期望来自http的内容...... showcode.service.ts
的import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { environment } from '../../environments/environment';
@Injectable()
export class ShowcodeService {
constructor(private http: Http) { }
getCode(id): any{
return this.http.get(environment.baseUrl + 'code/show/' + id)
.map((response: Response) => response.json());
};
}
答案 0 :(得分:1)
尝试将角度更新为4.0.0。
他们修复了一些与服务器端渲染有关的错误。