dssqq82402 2018-09-12 01:07
浏览 56
已采纳

雄辩的关系和类与构造函数

I have two classes which are connected through hasMany and belongsTo method.

class InquiryParameter extends Model
{
    public function translations()
    {
        return $this->hasMany(InquiryParameterTranslation::class);
    }
}

class InquiryParameterTranslation extends Model
{
    public function __construct($inquiry_parameter_id, $language_code, $name, $description)
    {
            $this->inquiry_parameter_id = $inquiry_parameter_id;
            $this->language_code = $language_code;
            $this->name = $name;
            $this->description = $description;
    }
}

However, when I create new object

$inquiry_parameter = new InquiryParameter;

And then call method translations.

$names = $inquiry_parameter->translations;

I received error:

Type error: Too few arguments to function App\InquiryParameterTranslation::__construct(), 0 passed in /Users/SouL-MAC/Code/konfig/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php on line 653 and exactly 4 expected (View: /Users/SouL-MAC/Code/konfig/resources/views/admin/inquiry/parameters.blade.php)

Is it possible to use eloquent relationship with classes which contains constructor ? Or am I doing something wrong ?

Thanks for your replies

展开全部

  • 写回答

2条回答 默认 最新

  • dpde7365 2018-09-12 02:42
    关注

    $names = $inquiry_parameter->translations;

    When above code runs, it actually creates a new object of Class InquiryParameterTranslation without passing any parameters to constructor. But your constructor expects parameters. Therefore it is causing error.

    Solution to this problem is that you change your constructor code as given below:

    public function __construct()
    {
        // no parameter in constructor
    }
    

    Then create another function (as given below) to initialize model properties

    public function initialize($inquiry_parameter_id, $language_code, $name, $description)
    {
            $this->inquiry_parameter_id = $inquiry_parameter_id;
            $this->language_code = $language_code;
            $this->name = $name;
            $this->description = $description;
    }
    

    By making above changes your code will run fine and when you need to add new translation to database you can use following code (Example)

    $translation = new InquiryParameterTranslation;
    $translation->initialize($inquiry_parameter_id, $language_code, $name, $description);
    
    $translation->save();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部