要解决Angular POST到PHP后,file_put_contents不写入或提交顺序错误的问题,你可以尝试以下解决方法:
// 接收POST请求的数据
$data = json_decode(file_get_contents("php://input"), true);
// 写入数据到文件
file_put_contents("path/to/file.txt", $data);
forkJoin
操作符来确保多个请求按照顺序发送。例如:import { forkJoin } from 'rxjs';
// 创建多个POST请求
const request1 = this.http.post(url1, data1);
const request2 = this.http.post(url2, data2);
// 使用forkJoin确保请求按照顺序发送
forkJoin([request1, request2]).subscribe(
results => {
// 请求成功的处理逻辑
},
error => {
// 请求失败的处理逻辑
}
);
这些解决方法应该能够帮助你解决Angular POST到PHP后,file_put_contents不写入或提交顺序错误的问题。记得在实际应用中根据你的具体情况进行相应的调整。