我有以下数据 迈克德洛纳斯, 肖恩·德罗纳斯, 加里瓦维尔, 芯片瓦砾, 亚当·沃瑟曼, 达里尔卡格尔, 丹沃瑟曼, 我在Drupal后端使用自定义文本,我希望将其显示在两个" td"进入" tr"使用自定义文字。
答案 0 :(得分:0)
只需尝试两个td'就像下面的代码:
@Injectable()
export class SampleService {
private _getUrl: string = 'http://<server-ip>/v1/route1';
private _postUrl: string = 'http://127.0.0.1:<port>/v1/route2';
constructor(private _http: Http) {}
testGet() {
return this._http.get(this._getUrl).map((response: Response) => response.json());
}
testPost() {
const headers = new Headers();
headers.append('Content-Type', 'application/json; charset=utf-8');
this._http.post(this._postUrl, JSON.stringify({'key1': 'value1', 'key2': 'value2'}), headers).subscribe(() => {}, err => console.error(err));
}
}