我使用angular 2在html中创建了一个表单。 我必须将输入文件保存到数据库(phpmyadmin)。 我可以用它来保存在表格中。
答案 0 :(得分:0)
您可以使用http:
将数据从角度2客户端发布到服务器端postData(data: any) {
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
console.log("Posting data: ", data);
return this.http.post(this.apiUrl + "/upload", JSON.stringify(data), options).catch(this.handleError);
}
这是官方文档的link。