Symfony 警告:spl_object_hash()要求参数1为对象

Symfony 警告:spl_object_hash()要求参数1为对象,symfony,doctrine,entitymanager,unit-of-work,fuelphp-orm,Symfony,Doctrine,Entitymanager,Unit Of Work,Fuelphp Orm,我通过php应用程序/控制台命令,使用yml映射注释创建了带有Category.php和Product.php的MainBlogBundle。在将CRUD操作用于添加/编辑/删除/显示操作后,我尝试添加一个类别,并在提交添加类别表单后获得 Warning: spl_object_hash() expects parameter 1 to be object, string given in /var/www/sitetwo/vendor/doctrine/orm/lib/Doctrine/ORM

我通过php应用程序/控制台命令,使用yml映射注释创建了带有
Category.php
Product.php
的MainBlogBundle。在将CRUD操作用于添加/编辑/删除/显示操作后,我尝试添加一个类别,并在提交
添加类别表单后获得

Warning: spl_object_hash() expects parameter 1 to be object, string given in
/var/www/sitetwo/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php line 1367
我在github上发布了我的示例代码,下面是数据库的脚本

git@github.com:veerpartap/ProblemSymfony.git

Warning: spl_object_hash() expects parameter 1 to be object, string given in
/var/www/sitetwo/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php line 1367

如上所述,问题是我没有在控制器文件中包含Arrarycollection命名空间。但是在包含名称空间之后,我在添加新产品时遇到了另一个错误

以下是错误消息: 在选择字段的Main\BlogBundle\Enity\Category类型的对象上未找到“\uuu toString()”方法

对于此错误,我们需要向您的类别实体添加一个_toString()方法。例如:

/****************************************************************************/

-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 26, 2013 at 01:56 PM
-- Server version: 5.5.32
-- PHP Version: 5.5.3-1+debphp.org~precise+2

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

--
-- Database: `sitetwo`
--

-- --------------------------------------------------------

--
-- Table structure for table `category`
--

CREATE TABLE IF NOT EXISTS `category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `Company`
--

CREATE TABLE IF NOT EXISTS `Company` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `company_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
 `address` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
 `owner_name` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
 `status` tinyint(1) NOT NULL,
 `created` datetime NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;

--
-- Dumping data for table `Company`
--

 INSERT INTO `Company` (`id`, `company_name`, `address`, `owner_name`, `status`, `created`) VALUES
(1, 'My First Company', 'Street 5A Sector 85 Chandigarh 1665588', 'Mr. Prateek Kumar', 1, '2013-09-06 00:00:00'),
(2, 'My Second Private Company', 'Street 34N Sector 89, Chandigarh 165898', 'Mr. Saurabh Shuja', 1, '2013-09-07 00:00:00');

-- --------------------------------------------------------

--
-- Table structure for table `Post`
--

CREATE TABLE IF NOT EXISTS `Post` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `title` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
 `body` longtext COLLATE utf8_unicode_ci NOT NULL,
 `published` datetime NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `posts`
--

CREATE TABLE IF NOT EXISTS `posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`body` longtext COLLATE utf8_unicode_ci NOT NULL,
`published` datetime NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `products`
--

CREATE TABLE IF NOT EXISTS `products` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `category_id` int(11) DEFAULT NULL,
 `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 `price` decimal(10,0) NOT NULL,
 `description` longtext COLLATE utf8_unicode_ci NOT NULL,
 PRIMARY KEY (`id`),
 KEY `IDX_B3BA5A5A12469DE2` (`category_id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

 -- --------------------------------------------------------

 --
 -- Table structure for table `User`
 --

   CREATE TABLE IF NOT EXISTS `User` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `first_name` varchar(150) NOT NULL,
    `last_name` varchar(150) NOT NULL,
   `sex` tinyint(1) DEFAULT NULL,
   `date_of_birth` datetime DEFAULT NULL,
   `education` varchar(10) NOT NULL,
   `mobile` varchar(10) NOT NULL,
   `email` varchar(100) NOT NULL,
   `address` varchar(200) NOT NULL,
   `status` tinyint(1) DEFAULT NULL,
   PRIMARY KEY (`id`)
   ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

   --
   -- Dumping data for table `User`
   --

   INSERT INTO `User` (`id`, `first_name`, `last_name`, `sex`, `date_of_birth`,  `education`, `mobile`, `email`, `address`, `status`) VALUES
  (1, 'Veerpartap', 'Singh', 1, '2008-11-24 00:00:00', 'MCA', '71505897', 'metveerpartapsingh@gmail.com', 'hl 99 phase 2 sas nagar mohali', 1),
  (2, 'Vicky', 'Sharma', 1, '2008-05-09 00:00:00', 'MCA', '88754257', 'vicky.sharma@gmail.com', 'Village Burari, Jila Nawanshar', 1);

  --
  -- Constraints for dumped tables
  --

  --
  -- Constraints for table `products`
  --
  ALTER TABLE `products`
  ADD CONSTRAINT `FK_B3BA5A5A12469DE2` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`);

 /****************************************************************************/
PHP魔术方法u_toString()用于表示对象的文本表示。在这种情况下,在以相关实体的形式选择类别时,将使用类别名称。

如果在类XxxxxType extends AbstractType中出现uu toString()错误 可以在生成器中添加场定义,如下所示。无需修改实体

public function __toString() {   return $this->name;  }

你能解释一下当异常被抛出时你到底在做什么吗?清除了你的缓存?顺便说一句,你只是查看了你的个人资料中提供的信息,发现了一个小“错误”。正确的术语是“软件工程师”而不是“工程师”,或者是某种我不懂的文字游戏?:)感谢您提供的信息,并更正该打字错误。关于这个问题,我发现我必须在category controller中包含ArrayCollection类。添加该行后,我看到另一个错误,该错误出现在传递到选项字段的“Main\BlogBundle\Entity\Category”类型的对象的产品部分“\uuu toString()”方法中。要读取自定义getter,请将选项“property”设置为所需的属性路径。"
$builder
            ->add('enquete','entity',array('class' => 'AdequatSipBundle:Enquete', 
                'property' => 'Id', 'read_only'=>true))
            ->add('produit','entity',array('class' => 'AdequatSipBundle:Produit', 
                'property' => 'Name', 'read_only'=>true))