Laravel 5.3,PHP 5.6
新的laravel new
项目,最小配置。
我制作了一个简单的迁移和模型,并尝试通过php artisan tinker
将数据投放到其中。
我的迁移看起来像这样:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatesFooTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('foo', function (Blueprint $table) {
$table->increments('id');
$table->string('foo', 20);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('foo');
}
}
当我运行php artisan migrate
时,数据库填充正常。
相应的模型很简单:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Foo extends Model
{
protected $table = 'foo';
protected $fillable = ['foo'];
}
我也有一个ModelFactory:
$factory->define(App\Foo::class, function (Faker\Generator $faker) {
return [
'foo' => $faker->email,
];
});
当我尝试make
来自工厂的传单时,Tinker做了我认为应该做的事情:
>>> factory('App\Foo')->make();
=> App\Foo {#696
foo: "morgan39@gmail.com",
但是当我尝试访问数据库时,Eloquent无法将查询值包装在字符串中:
>>> $foo = factory('App\Foo')->create();
Illuminate\Database\QueryException with message 'SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'foo' at row 1 (SQL: insert into `foo` (`foo`, `updated_at`, `created_at`) values (jakayla62@streich.org, 2016-09-06 23:59:03, 2016-09-06 23:59:03))'
Google上没有这样的内容。有什么想法吗?
(编辑用更简单的例子显示同样的问题)
答案 0 :(得分:11)
某些faker方法将其结果作为数组返回,默认情况下。例如:
$faker->words(3)
将返回:
array('porro', 'sed', 'magni')
要将结果作为字符串返回,您可以将true
作为某些方法的第二个参数传递,如上一个使用words
方法的示例所示:
$faker->words(3, true)
返回:
"porro sed magni"
如readme:
中所述words($nb = 3, $asText = false) // array('porro', 'sed', 'magni')
答案 1 :(得分:1)
解决了它。问题是faker库。显然,当您明确投射(string)$faker->whatever
时,它可以解决问题。