Angular2 アプリケーションで PHP コードを使用して、MySql データベースからデータを削除するにはどうすればよいですか? 最も近いアドバイスはAngular 1向けで、次のとおりです。
$scope.deleteProduct = function(id){
// ask the user if he is sure to delete the record
if(confirm("Are you sure?")){
// post the id of product to be deleted
$http.post('delete_product.php', {
'id' : id
}).success(function (data, status, headers, config){
// tell the user product was deleted
Materialize.toast(data, 4000);
// refresh the list
$scope.getAll();
});
}
}
post
同様にメソッドを使用することは可能ですか:
import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import 'rxjs/Rx';
@Injectable()
export class HttpService {
constructor(private http: Http) {}
deleteData() {
return this.http.post('delete_record.php')
}
}
Angular2/PHP に関する洞察/経験を歓迎します。