我有三个表(services,services_products,services_product_translation)
尝试插入新产品时出现此错误
SQLSTATE [42S22]:未找到列:1054未知列&services; product_products.services_product_id'在' where子句' (SQL:从
services_products
中选择{services_products
。services_product_id
= 3)
这是我的迁移 服务迁移
Schema::create('services', function(Blueprint $table)
{
$table->increments('id');
$table->binary('image');
$table->timestamps();
});
services_products migration
Schema::create('services_products', function(Blueprint $table)
{
$table->increments('id');
$table->integer('service_id')->unsigned();
$table->binary('image');
$table->binary('pdf');
$table->foreign('service_id')->references('id')->on('services')->onDelete('cascade');
$table->timestamps();
});
这是翻译表
Schema::create('services_product_translations', function(Blueprint $table)
{
$table->increments('id');
$table->integer('product_id')->unsigned();
$table->string('title', 150);
$table->longText('details');
$table->string('locale')->index();
$table->unique(['product_id', 'locale']);
$table->foreign('product_id')->references('id')->on('services_products')->onDelete('cascade');
});
这是我的模特
服务
class Service extends \Eloquent
{
use \Dimsav\Translatable\Translatable;
public $translatedAttributes = ['title', 'brief'];
public $translationModel = 'ServicesTranslation';
public function servicesPro()
{
return $this->hasMany('ServicesProduct', 'service_id');
}
}
ServicesProduct
class ServicesProduct extends \Eloquent
{
use \Dimsav\Translatable\Translatable;
public $translatedAttributes = ['title', 'details'];
public $translationModel = 'ServicesProductTranslation';
public function services()
{
return $this->belongsTo('Service', 'service_id');
}
public function proImage()
{
return $this->hasMany('ServicesProductImage', 'image_id');
}
public function proVideo()
{
return $this->hasMany('ServicesProductVideo', 'video_id');
}
这是我以前用来存储的控制器
public function store()
{
$sev_id = Input::get('category');
$file = Input::file('image');
$pdf = Input::file('pdf');
$destination_path = 'images/servicesProductsImages/';
$filename = str_random(6) . '_' . $file->getClientOriginalName();
$file->move($destination_path, $filename);
$destination_path_pdf = 'images/servicesProductsPdf/';
$filenamePdf = str_random(6) . '_' . $pdf->getClientOriginalName();
$pdf->move($destination_path_pdf, $filenamePdf);
$newSerPro = new ServicesProduct();
$newSerPro->service_id = $sev_id;
$newSerPro->image = $filename;
$newSerPro->pdf = $filenamePdf;
$newSerPro->save();
$localization = Input::get('localization');
$locales = array_keys($localization);
foreach ($locales as $locale) {
if (!in_array($locale, array('en', 'ar'))) {
Session::flash('message', 'Lang Error');
return Redirect::to('admin/create-service-sub-category');
}
}
答案 0 :(得分:3)
错误是自解释的,services_product_id
表中没有名称为services_products
的列。这就是它显示错误的原因。
我认为条件中的列名称与services_products.id
类似,因为我们通常会在主列上连接表,其主列为id
答案 1 :(得分:1)
发表评论作为回答:
它应该只是" services_products.id"?我没有看到你的领域 在您的迁移中提到。