gpt4 book ai didi

php - 在 CakePHP 3.0 中将附加数据保存到联合表

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:39 25 4
gpt4 key购买 nike

我正在尝试使用 CakePHP 将一些数据保存到联合表中。这是应用程序中我想修复的部分 - 它是带有附加列的正常 BelongsToMany 关联:

模型>实体:

/* Durations */
class Duration extends Entity {
protected $_accessible = [
'duration' => true,
'cost' => true,
];
}

/* Commercials */
class Commercial extends Entity {

protected $_accessible = [
'info' => true,
'commercial_durations' => true,
];
}

/* CommercialDurations */
class CommercialDuration extends Entity {
protected $_accessible = [
'duration_id' => true,
'commercial_id' => true,
'quantity' => true,
'duration' => true,
'commercial' => true,
];
}

模型>表:

class DurationsTable extends Table {
public function initialize(array $config)
{
$this->table('durations');
$this->displayField('id');
$this->primaryKey('id');

$this->belongsToMany('Commercials', [
'through' => 'CommercialDurations',
]);
}
}

class CommercialsTable extends Table
{
public function initialize(array $config){
$this->table('commercials');
$this->displayField('id');
$this->primaryKey('id');

$this->belongsToMany('Durations', [
'through' => 'CommercialDurations'
]);

$this->hasMany('CommercialDurations', [
'foreignKey' => 'commercial_id'
]);

}
}

class CommercialDurationsTable extends Table {
public function initialize(array $config)
{
$this->table('commercial_durations');
$this->displayField('id');
$this->primaryKey('id');
$this->belongsTo('Durations', [
'foreignKey' => 'duration_id',
'joinType' => 'INNER'
]);
$this->belongsTo('Commercials', [
'foreignKey' => 'commercial_id',
'joinType' => 'INNER'
]);
}
}

现在,我创建了一个新 View ,我希望人们能够在其中选择一个持续时间、键入数量并将该值添加到数据库中。我正在使用以下代码:

<?php 
echo $this->Form->create($commercial);
echo $this->Form->input('durations._duration', ['options' => $durations]);
echo $this->Form->input('durations._joinData.quantity');
echo $this->Form->submit(__('Next'), ['class' => 'button small right', 'escape' => false]);
echo $this->Form->end()
?>

此表单的问题是持续时间选择不显示持续时间表中的“持续时间”字段,而是将该表中的所有字段(每行一个)显示为 JSON

<option value="0">{ "id": 1, "duration": "30 sec", "cost": 450 }</option>

提交表单后,我无法将此信息保存到 Commercials 对象或 CommercialDurations 中。这是我从 $this->request->data 对象中得到的:

[
'durations' => [
'_duration' => '2',
'_joinData' => [
'quantity' => '2'
]
]
]

在我开始表单之前 debug((string)$commercial) 的输出是:

/src/Template/Commercials/features.ctp (line 22)
'{
"id": 2,
"info": "AAAAAA ",
"created": "2015-04-16T21:48:48+0000",
"updated": null,
"durations": [],
}'

如何在表单上正确显示数据?我如何检索和保存这些数据?

谢谢!!

最佳答案

我不了解您的模型关系,因为根据您的帖子,持续时间属于商业广告,商业广告属于持续时间。

为了向您解释应该如何发送请求以及表单的外观,让我们假设您的模型如下所示:

您的商业广告有一个商业持续时间,这个商业持续时间属于一个持续时间

所以你的模型看起来像这样:

  • 商业有很多商业持续时间。

  • 商业时长属于商业。

  • 商业持续时间属于持续时间。

  • 持续时间有很多商业持续时间。

你的添加函数应该像这个(假设你没有保存新的持续时间,只是商业和商业持续时间)

    $commercial = $this->Commercials->newEntity($this->request->data,[
'associated' => ['Commercialdurations']
]);
if ($this->Commercials->save($commercial)) {
$success = true;
}else{
$success = false;
}

请求数据应该是这样的:

{  
"commercialdurations":{
"Commercialduration":{
"duration_id":"1",
"quantity":"1",
"duration":"1"
}
},
"info":"something"
}

基本上,您发送的是新商业广告(信息)的数据以及与之相关的商业广告持续时间(您可以发送多个商业广告持续时间)。

为了让您的表单显示持续时间,基本上您必须在 Controller 中序列化此信息,转到您的添加操作并添加它。 (无论如何你都可以使用你想要检索的数据,重要的是你将它发送回 View )

    $durations = $this->Commercials->Commercialdurations->Durations->find('list', ['limit' => 200]);
$this->set(compact('commercial',durations'));
$this->set('_serialize', ['commercial']);

然后在你的表单中你可以使用数据

echo $this->Form->input('duration_id', ['options' => $durations]);

所以你的表单看起来像这样:

    echo $this->Form->input('info');
echo $this->Form->input('commercials.Commercial.duration_id', ['options' => $durations]);
echo $this->Form->input('commercials.Commercial.quantity');
echo $this->Form->input('commercials.Commercial.duration');

基本上,您想要发送一个包含所有级别关联数据的请求。

有关保存关联数据的指导,请参阅其他问题:

Cake PhP 3 Saving associated data in multiples levels

要查看有关如何构建表单的更多信息:

http://book.cakephp.org/3.0/en/views/helpers/form.html#creating-inputs-for-associated-data

关于php - 在 CakePHP 3.0 中将附加数据保存到联合表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29758841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com