У меня тут маленькая тревожная проблема!
использование Symfony 1.4 с Doctrine!
На самом деле у меня есть отношение «многие ко многим» (см. код ниже), но у меня нет ПРАВИЛЬНОГО результата!
Monitor:
actAs:
Timestampable: ~
columns:
label: {type: string(45)}
url: {type: string(80)}
frequency: {type: integer}
timeout: {type: integer}
method: {type: enum, values: [GET, POST]}
parameters: {type: string(255)}
relations:
Server:
foreignAlias: Servers
refClass: Benchmark
local: monitor_id
foreign: server_id
Server:
actAs:
Timestampable: ~
columns:
name: string(255)
ip: string(255)
relations:
Monitor:
foreignAlias: Monitors
refClass: Benchmark
local: server_id
foreign: monitor_id
Benchmark:
actAs:
Timestampable: ~
columns:
monitor_id: { type: integer, primary: true }
server_id: { type: integer, primary: true }
connexionTime: {type: string(45)}
executionTime: {type: string(45)}
responseTime: {type: string(45)}
responseCode: {type: string(45)}
responseMessage: {type: string(45)}
relations:
Monitor:
local: monitor_id
foreign: id
foreignAlias: Monitors
Server:
local: server_id
foreign: id
foreignAlias: Servers
1 - когда в интерфейсе добавления сервера (или монитора) появляется список мониторов (или серверов) (но я могу добавить сервер (или монитор), не выбирая его.
2 - в интерфейсе добавления бенчмарка у меня нет списка мониторов и серверов для их выбора! и когда я отправляю, я не работаю (это никак не должно!). я получаю эту ошибку:
500 | Internal Server Error | Doctrine_Connection_Mysql_Exception
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`sfmonitoring`.`benchmark`, CONSTRAINT `benchmark_monitor_id_monitor_id` FOREIGN KEY (`monitor_id`) REFERENCES `monitor` (`id`))
у меня есть этот код в BaseBenchmarkForm class
abstract class BaseBenchmarkForm extends BaseFormDoctrine
{
public function setup()
{
$this->setWidgets(array(
'monitor_id' => new sfWidgetFormInputHidden(),
'server_id' => new sfWidgetFormInputHidden(),
'connexionTime' => new sfWidgetFormInputText(),
'executionTime' => new sfWidgetFormInputText(),
'responseTime' => new sfWidgetFormInputText(),
'responseCode' => new sfWidgetFormInputText(),
'responseMessage' => new sfWidgetFormInputText(),
'created_at' => new sfWidgetFormDateTime(),
'updated_at' => new sfWidgetFormDateTime(),
));
$this->setValidators(array(
'monitor_id' => new sfValidatorChoice(array('choices' => array($this->getObject()->get('monitor_id')), 'empty_value' => $this->getObject()->get('monitor_id'), 'required' => false)),
'server_id' => new sfValidatorChoice(array('choices' => array($this->getObject()->get('server_id')), 'empty_value' => $this->getObject()->get('server_id'), 'required' => false)),
'connexionTime' => new sfValidatorString(array('max_length' => 45, 'required' => false)),
'executionTime' => new sfValidatorString(array('max_length' => 45, 'required' => false)),
ЛЮБЫЕ ИДЕИ ПАРНИ ??????
Pleaaaaaase действительно заблокирован!
.
Спасибо за помощь, это действительно значит для меня!
Я сделал эти преобразования:
Monitor:
tableName: monitor
actAs:
Timestampable: ~
columns:
label: {type: string(45)}
url: {type: string(80)}
frequency: {type: integer}
timeout: {type: integer}
method: {type: enum, values: [GET, POST]}
parameters: {type: string(255)}
Benchmark:
actAs:
Timestampable: ~
columns:
monitor_id: { type: integer, primary: true }
server_id: { type: integer, primary: true }
connexionTime: {type: string(45)}
executionTime: {type: string(45)}
responseTime: {type: string(45)}
responseCode: {type: string(45)}
responseMessage: {type: string(45)}
relations:
Monitor: { onDelete: CASCADE, local: monitor_id, foreign: id, foreignAlias: Monitors }
Server: { onDelete: CASCADE, local: server_id, foreign: id, foreignAlias: Servers }
Server:
actAs:
Timestampable: ~
columns:
name: string(255)
ip: string(255)
Но в тестовом «новом» интерфейсе я все еще не получаю список серверов и мониторов!