我对Laravel并不陌生,目前正在尝试学习它的工作原理。我在一个使用Laravel和AngularJS的项目中工作。我目前正在尝试将数据从AngularJS中的一个表插入3个不同的表中,我可以很好地获取值,但是我不知道如何将数据插入多个表中。我在Table_1中也有一个PK,在Table_2和Table_3中也有FK,我也需要插入。我一直在设法解决这一问题,我确实需要一些帮助。
如果您需要有关结构的任何其他信息或其他任何信息,请询问,我将不确定您需要看什么:s
最佳问候 凯文! :)
编辑:
所以我在AngularJS中有一个看起来像这样的表单:
form.html
<tr>
<td>
<input class="form-control" id="currency" ng-model="travelbill.Currency" ng-init="travelbill.Currency ='SEK'" type="text" />
</td>
<td>
<input class="form-control" id="exchange_rate" ng-model="travelbill.Exchange_rate" type="number" />
</td>
<td>
<input class="form-control" id="description" ng-model="travelbill.Description"/>
</td>
<td>
<input class="form-control" id="sekinklmoms" ng-model="travelbill.SekInklMoms" type="number" />
</td>
<td>
<input class="form-control" id="sekmoms" ng-model="travelbill.SekMoms" type="number" />
</td>
<td>
</td>
</tr>
从那里我用控制器呼叫Laravel:
Controller.php
class TravelbillController extends \BaseController {
public function index() {
return Response::json(Travelbill::all());
}
public function store() {
$validator = Validator::make(
array(
'ResourceId' => Input::get('ResourceId')
),
array(
'ResourceId' => 'required'
)
);
if($validator->fails()){
App::abort(500, 'Validation Error!');
} else {
$travelbill = new Travelbill;
$travelbill->ResourceId = Input::get('ResourceId');
$travelbill->Destination = Input::get('Destination');
$travelbill->Customer = Input::get('Customer.Name');
$travelbill->StartDate = Input::get('StartDate');
$travelbill->StartTime = Input::get('StartTime');
$travelbill->EndDate = Input::get('EndDate');
$travelbill->EndTime = Input::get('EndTime');
$travelbill->Invoice = Input::get('Invoice');
$travelbill->TravelCompensation = Input::get('TravelCompensation');
$travelbill->save();
$response = Response::json($travelbill);
}
return $response;
}
}
在这里,我还想将数据库中的增量值TravelbillId
插入到名为Cost
和Allowance
的表中,其中FK为TravelbillId
关系我想要的是Cost
上一对一或Allowance
上一对多。
我也有一些模型,但是我不确定它们的编写是否正确。
UserModel.php
<?php
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
protected $table = 'resource';
protected $primaryKey = 'ResourceId';
public $timestamps = false;
public function supplier(){
return $this->belongsTo('Supplier', 'SupplierId', 'SupplierId');
}
public function resourceData(){
return $this->hasMany('OrderResourceData', 'ResourceId', 'ResourceId');
}
public function reportedTime(){
return $this->hasMany('ReportedTime', 'ResourceId', 'ResourceId');
}
public function approvements(){
return $this->hasMany('Approvement', 'ResourceId', 'ResourceId');
}
}
TravelbillModel.php
<?php
class Travelbill extends Eloquent {
protected $table = 'travelbill';
protected $primaryKey = 'TravelbillId';
protected $fillable = array('ResourceId', 'Destination', 'StartDay', 'StartTime', 'EndDay', 'EndTime', 'Invoice', 'TravelCompensation');
public $timestamps = true;
public function travelbill() {
return $this->belongsTo('User', 'ResourceId', 'ResourceId');
}
public function cost() {
return $this->hasOne('Cost', 'TravelbillId', 'TravelbillId');
}
public function allowance() {
return $this->hasOne('Allowance', 'TravelbillId', 'TravelbillId');
}
}
?>
CostModel.php
<?php
class Cost extends Eloquent {
protected $table = 'cost';
protected $primaryKey = 'CostId';
protected $fillable = array('TravelbillId', 'SekInklMoms');
public $timestamps = false;
public function cost() {
return $this->belongsTo('Travelbill', 'TravelbillId', 'TravelbillId');
}
}
?>
答案 0 :(得分:0)
您似乎在很大程度上正确地完成了模型,尽管没有数据库模式也很难说是100%。基本上,您需要做的是保存并关联记录集,首先与旅行单,然后与关联的 Cost 和 Allowance 。< / p>
$travelBill = new Travelbill();
$travelBill->ResourceId = Input::get('ResourceId');
...
$travelBill->save(); // This should populate the TravelbillId primary key
$cost = new Cost();
$cost->SekInklMoms = ...; // The value of SekInklMoms
// Save the cost to DB *and* associate the models
$travelBill->cost()->save($cost);
// The JSON will contain travelBill *and* cost due to the association above
return Response::json($travelbill);
这应该使您能解决保存问题。这里要了解的重要一点是,您必须先保存主模型,才能保存依赖其存在的任何内容(即,将外键与主模型相关联)。请记住,这也可以做到:
$travelBill->save();
$cost = new Cost();
$cost->SekInklMoms = ...;
$cost->TravelbillId = $travellBill->TravelbillId;
$cost->save();
此处的不同之处在于,您仅将两者关联到数据库中,而不关联此请求中的模型。这意味着您返回的JSON仅包含TravelBill。
首先适应这两种方法,然后您可能需要考虑将整套模型保存包装在数据库事务中。