我收到错误 array_merge 预期参数 2 在 laravel 8 工厂?

Posted

技术标签:

【中文标题】我收到错误 array_merge 预期参数 2 在 laravel 8 工厂?【英文标题】:I got error array_merge Expected parameter 2 to be in laravel 8 factory? 【发布时间】:2021-04-17 13:07:14 【问题描述】:

在从控制器运行的 Laravel 8.12 工厂中出现错误:

[2021-01-12 16:42:10] local.ERROR: array_merge(): Expected parameter 2 to be an array, int given "exception":"[object] (ErrorException(code: 0): array_merge(): Expected parameter 2 to be an array, int given at /mnt/_work_sdb8/wwwroot/lar/AdsBackend8/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php:381)
[stacktrace]
#0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
#1 /mnt/_work_sdb8/wwwroot/lar/AdsBackend8/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(381): array_merge()
#2 [internal function]: Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\closure()
#3 /mnt/_work_sdb8/wwwroot/lar/AdsBackend8/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(884): array_reduce()

... 在我运行的控制器中:

Ad::addDummyData();

在 app/Models/Ad.php 中:

公共静态函数 addDummyData()

$ads = Ad::factory()->create(10); // POINTS TO THIS LINE
\Log::info(  varDump($ads, ' -1 addDummyData() $ads::') );

在数据库/工厂/AdFactory.php 中:

<?php

namespace Database\Factories;

use Config;
use App\Models\Ad;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use \Cviebrock\EloquentSluggable\Services\SlugService;

class AdFactory extends Factory

    protected $model = Ad::class;

    public function definition()
    
        $text= $this->faker->text;
        $slugValue = SlugService::createSlug(Ad::class, 'slug', $text);

        \Log::info(  varDump($slugValue, ' -1 $slugValue::') );
        return [
            'title' => $text,
            'ad_token' => $text,
            'slug' => $slugValue,
            'phone_display' => (rand(1, 3) == 1),
            'has_locations' => (rand(1, 4) == 1),
            'status' => 'A', // password
            'price' => mt_rand(10, 500),
            'ad_type' => (rand(1, 2) == 1 ? 'B' : 'S'),
            'expire_date' => $this->faker->dateTimeThisMonth('now', Config::get('app.timezone'))->format('Y-m-d H:i:s'),
            'description' => $this->faker->paragraphs(rand(1, 4), true),
            'creator_id' => rand(1, 5),
        ];
    

在错误描述中,我没有提及 database/factories/AdFactory.php。

为什么会出错以及如何修复?

谢谢!

【问题讨论】:

【参考方案1】:

在使用create 方法时,您必须传递一个属性数组。参数是覆盖工厂的默认模型属性。

这是文档中的一个示例:

$user = User::factory()->create([
    'name' => 'Abigail',
]);

如果要创建10次模型,需要使用count方法:

Ad::factory()->count(10)->create();

【讨论】:

以上是关于我收到错误 array_merge 预期参数 2 在 laravel 8 工厂?的主要内容,如果未能解决你的问题,请参考以下文章

array_merge():参数2不是旁过滤器上的数组

array_merge() [function.array-merge]:参数 #1 不是数组

错误:无法将类型“(_)->()”的值转换为预期的参数类型“(()-> Void)?”

Ruby on Rails 参数数量错误(给定 0 预期 1)

Laravel 4 - 如何获得有意义的错误

为啥我在从 Java 批量执行 PostgreSQL 存储过程时收到错误消息,提示“未预期结果”?