Laravel-“方法Illuminate \\ Database \\ Query \\ Builder :: recipes不存在

时间:2018-06-28 21:10:33

标签: php ajax laravel laravel-5 eloquent

我在SO上看过一些类似的问题,但是我不知道为什么要调用配方?

我正在建立一个食谱网站,用户可以创建标签,创建食谱,创建分配给该食谱的配料,并能够创建使用该配料的步骤。

以下是我的型号:

Ingredient.php

class Ingredient extends Model
{
  protected $touches = ['recipes'];

  public function recipes(){
    return $this->belongsToMany('App\Recipe', 'recipe_ingredients', 'ingredient_id', 'recipe_id');
  }

  public function step(){
    return $this->belongsToMany('App\Step', 'step_ingredients');
  }

}

Recipe.php

class Recipe extends Model
{
  public function ingredients(){
    return $this->belongsToMany ('App\Ingredient', 'recipe_ingredients', 'recipe_id', 'ingredient_id');
  }

  public function tags(){
    return $this->belongsToMany('App\Tag', 'recipe_tag');
  }

  public function user(){
    return $this->belongsTo('App\User');
  }

  public function steps(){
    return $this->hasMany('App\Step');
  }
}

Step.php

class Step extends Model
{

  protected $touches = ['recipes'];

  public function recipe(){
    return $this->belongsTo('App\Recipe');
  }

  public function ingredient(){
    return $this->belongsToMany('App\Ingredient', 'step_ingredient');
  }
}

以下是我的 StepsController ,我正在通过jQuery的Ajax提交将其保存到 steps / create.blade.php 文件中。

use Illuminate\Http\Request;
//use Session;
use App\Recipe;
use App\Tag;
use App\Step;
use App\Ingredient;

class StepsController extends Controller
{
    public function __construct()
    {
        $this->middleware('auth');
    }

    public function create($recipe_id)
    {
      $recipe = Recipe::find($recipe_id);
      return view('steps.create')->withRecipe($recipe);
    }

    public function store(Request $request)
    {

      $step = new Step;
      $step->recipe_id = 2;
      $step->step_no = 2;
      $step->is_prep = 1;
      $step->duration = '00:14:01';
      $step->method = 'test';
      $step->save();

      $data = [
        'success' => true,
        'message'=> 'Your AJAX processed correctly',
        'ing' => json_decode($request->ingredients),
        'desc' => $request->description
      ] ;

      return response()->json($data);
    }
}

我正在为new Step使用静态值,以确保它正确地写入了db。

如果我注释掉将步骤写入数据库的情况,只是保留了$data数组和return response...,那么它可以正常工作,并且我将成功响应返回到视图。

包含它时,我在控制台中收到错误:

[Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error) (steps, line 0)

"message": "Method Illuminate\\Database\\Query\\Builder::recipes does not exist.",

但是我不确定在哪里调用食谱方法?我认为这与我在模型中的关系有关?

任何见识都会受到赞赏。

不确定是否需要,但是下面是我正在使用的脚本的一部分,因此请使用Ajax提交数据。

$("#addStepNew").click(function() {
    var step_ingredients = JSON.stringify(stepIngredients)
    var step_description = $('#stepDescription').val();
    // var prep_step = $('input[name=prepStep]:checked').val();

  $.ajax({
    headers: {
      'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
      },
    type: "post",
    data: {ingredients: step_ingredients, description: step_description},
    dataType:'json',
    url: "{{ route('steps.store', ['id' => $recipe->id]) }}",

    success: function (data) {
      $("#ajaxOutput").html('<code>Description output: '+data.desc+'</code>');
      $.each(data.ing, function (key, value) {
        $("#ajaxOutput").append('<br><code>'+value.ingredient_name+'</code>');
      });          
    },
    error: function (xhr, ajaxOptions, thrownError) {
      console.warn(xhr.responseText);
      alert(xhr.status);
      alert(thrownError);
    }
  });
});

1 个答案:

答案 0 :(得分:0)

似乎是protected $touches = ['recipes'];模型中的Step

我想它正在尝试更新与之关联的配方,但是没有用recipe_id来定义。