4

我使用 Backpack for Laravel 作为管理实体的后端。我有一个“显示”实体,其定义如下:

public function up()
    {
        Schema::create('shows', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('category_id')->nullable();
            $table->string('title');


            // Created/modified timestamps
            $table->timestamps();

        });

        // Add our search indexes
        DB::statement('ALTER TABLE shows ADD searchable tsvector NULL');
        DB::statement('CREATE INDEX shows_index ON shows USING GIN (searchable)');
    }

如您所见,有一个“可搜索”列,它是一个 tsvector。这对我的 Postgres FTS 很重要。

在显示实体的 CrudController 中,我为我的 title 和 category_id 字段手动定义了以下内容:

// Title
$this->crud->addField([
    'name' => 'title',
    'label' => 'Show Title',
    'type' => 'text'
]);
$this->crud->addColumn([
    'name' => 'title',
    'label' => 'Title'
]);



// Assigned category ID
$this->crud->addField([ // Select2Multiple = n-n relationship (with pivot table)
    'label' => "Assign to Category",
    'type' => 'select2',
    'name' => 'category_id', // the db column for the foreign key
    'entity' => 'category', // the method that defines the relationship in your Model
    'attribute' => 'title', // property from the model that is shown to user
    'model' => "App\Models\Category", // foreign key model
    'data_source' => url("admin/category")
]);
$this->crud->addColumn([
    'name' => 'category_id', // The db column name
    'label' => "Category", // Table column heading
    'type' => 'select',
    'entity' => 'category',
    'model' => "App\Models\Category",
    'attribute' => 'title'
]);

问题是 category_id 字段。虽然它与可搜索的 tsvector 字段无关,但似乎“select2”类型出于某种原因正在查看我的所有列,看到我的“可搜索”列的 tsvector 类型,并且在我编辑节目时随时中断. 我可以很好地看到 Backpack 中的节目索引页面,但是当我单击特定节目的编辑时,我收到以下错误:

请求未知数据库类型 tsvector,Doctrine\DBAL\Platforms\PostgreSQL92Platform 可能不支持。(查看:resources/views/vendor/backpack/crud/fields/select2.blade.php)

如果我尝试将 category_id 字段显示为简单的文本类型,则不会出现错误并且它可以正常工作:

$this->crud->addField([
            'name' => 'category_id',
            'label' => 'Category ID',
            'type' => 'text'
        ]);
        $this->crud->addColumn([
            'name' => 'category_id',
            'label' => 'Category ID'
        ]);

对我来说似乎很奇怪,尽管我在 CrudController 中手动定义我的字段,而不是从数据库中提取每个字段,尽管我在这里没有以任何方式为 select2 引用我的“可搜索”字段,但它仍然是查看我的“可搜索”列,查看 tsvector 类型,然后放弃我。

编辑

我已经将问题追溯到资源/视图/供应商/背包/crud/fields/select2.blade.php,特别是这段代码:

@if ($entity_model::isColumnNullable($field['name']))
            <option value="">-</option>
        @endif

如果我将这三行注释掉,一切正常。尽管 $field['name'] 是 'category_id' 而不是 tsvector 'searchable' 字段,但由于某种原因检查它是否可以为空会破坏整个事情。我还没有进一步追踪这一点。

4

1 回答 1

3

我自己为此找到了解决方案。由于学说不知道 tsvector 类型,它需要在 vendor/backpack/crud/src/CrudTrait.php 中注册

在 isColumnNullable() 函数中,已经有一个不同的不受支持的字段类型(枚举)被转换为字符串的示例:

// register the enum column type, because Doctrine doesn't support it
        $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');

之后我只是添加了 tsvector 类型,现在一切正常:

// register the tsvector column type, because Doctrine doesn't support it
        $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('tsvector', 'string');
于 2017-06-30T01:05:24.567 回答