php 使用Laravel API的Angular应用程序中的验证错误

zpqajqem  于 2024-01-05  发布在  PHP
关注(0)|答案(1)|浏览(266)

我有一个带有Laravel API的Angular应用程序,当我尝试更新它时,它会在这里生成验证错误
我有与Laravel API连接的Angular应用程序。在Laravel API中,员工和工资模型之间存在一对多的关系。

  1. protected $fillable = ['birth_date','first_name','last_name','gender','hire_date'];
  2. protected $primaryKey = 'emp_no';
  3. public function salaries(): HasMany
  4. {
  5. return $this->hasMany(Salary::class, 'emp_no','emp_no');
  6. }

字符串
Salary.php

  1. protected $fillable = ['salary','from_date','to_date'];
  2. public function employee(): BelongsTo
  3. {
  4. return $this->belongsTo(Employee::class, 'emp_no');
  5. }


更新控制器是

  1. public function updateEmployee(Request $request, $id)
  2. {
  3. $employee = Employee::find($id);
  4. if (is_null($employee)) {
  5. return response()->json(['message' => 'Employee not found'], 404);
  6. }
  7. $employee->update($request->validate([
  8. 'emp_no' => 'required',
  9. 'first_name' => 'required',
  10. 'last_name' => 'required',
  11. 'gender' => 'required',
  12. 'hire_date' => 'required'
  13. ]));
  14. $employee->salaries()->update($request->validate([
  15. 'emp_no' => 'required',
  16. 'salary' => 'required',
  17. 'from_date' => 'required',
  18. 'to_date' => 'required'
  19. ]));
  20. return response($employee, 200);
  21. }


更新的API路由

  1. Route::put('updateEmployee/{id}','App\Http\Controllers\EmployeeController@updateEmployee');


我的data.service.ts是这样的

  1. updateData(id: string, data: any) {
  2. return this.httpClient.put('http://127.0.0.1:8000/api/updateEmployee/'+id, data);
  3. }


和site-edit.component.ts

  1. updateEmployee() {
  2. this.dataService.updateData(this.id, this.employee).subscribe(res => {
  3. this.data = res;
  4. this.employee = this.data;
  5. console.log(res);
  6. })
  7. }


这是我最新的工资表

  1. <h4>Salary Details</h4>
  2. <div class="salary-details" *ngFor="let salary of employee.salaries">
  3. <div class="table">
  4. <div class="form-group row">
  5. <label for="salary" class="col-sm-2 col-form-label">Salary</label>
  6. <div class="col-sm-10">
  7. <input type="text" name="salary" class="form-control" [(ngModel)]="salary.salary">
  8. </div>
  9. </div>
  10. <br>
  11. <div class="form-group row">
  12. <label for="from_date" class="col-sm-2 col-form-label">From Date</label>
  13. <div class="col-sm-10">
  14. <input type="date" name="from_date" class="form-control" [(ngModel)]="salary.from_date">
  15. </div>
  16. </div>
  17. <br>
  18. <div class="form-group row">
  19. <label for="to_date" class="col-sm-2 col-form-label">To Date</label>
  20. <div class="col-sm-10">
  21. <input type="date" name="to_date" class="form-control" [(ngModel)]="salary.to_date">
  22. </div>
  23. </div>
  24. <br>
  25. </div>
  26. </div>


但当我尝试更新员工模型数据时,更新良好,但未更新薪金模型数据,检查响应确认,错误如下"The salary field is required. (and 2 more errors)""The salary field is required.""The from date field is required."The to date field is required.
那我怎么解决这个问题呢?

update我的dd($request->all());是

  1. array:10 [ // app\Http\Controllers\EmployeeController.php:40
  2. "emp_no" => 1
  3. "birth_date" => "1983-10-05"
  4. "first_name" => "bambu"
  5. "last_name" => "Kannangara"
  6. "gender" => "male"
  7. "hire_date" => "2023-09-18"
  8. "created_at" => null
  9. "updated_at" => null
  10. "salaries" => array:1 [
  11. 0 => array:6 [
  12. "emp_no" => 1
  13. "salary" => "9000"
  14. "from_date" => "2023-09-22"
  15. "to_date" => "2023-09-19"
  16. "created_at" => "2023-10-09T08:17:26.000000Z"
  17. "updated_at" => "2023-11-17T06:10:14.000000Z"
  18. ]
  19. ]
  20. ]

mzmfm0qo

mzmfm0qo1#

我不知道如何使用Angular,但根据$request->all()的结果,出现验证错误的原因是因为salaryfrom_dateto_date无法根据您的验证规则检测到,因为它位于salaries的数组中。
要验证它们,您需要将验证规则更改为:

  1. $employee->salaries()->update($request->validate([
  2. 'salaries.*.salary' => 'required',
  3. 'salaries.*.from_date' => 'required',
  4. 'salaries.*.to_date' => 'required',
  5. ]));

字符串

相关问题