实体元数据包装异常
Entity Meta data Wrapper Exception
我尝试在 drupal 7 中创建一个电子商务网站。我正在使用商务模块,然后添加产品,但它没有显示产品。下面显示了一些错误,如何修复它们?
EntityMetadataWrapperException: Unknown data property commerce_product. in EntityStructureWrapper->getPropertyInfo() (line 335 of C:\xampp\htdocs\Islandmaids\sites\all\modules\entity\includes\entity.wrapper.inc). Backtrace:
您应该使用像 xdebug 这样的调试工具。有很多教程可以将调试软件集成到 IDE 中。
安装调试器后,您应该在
中的第 335 行设置断点
C:\xampp\htdocs\Islandmaids\sites\all\modules\entity\includes\entity.wrapper.inc
并观察哪些值被传递给函数或者调用堆栈中可能有哪个自定义模块。有了这些信息,您可以通过设置更多断点来更深入地研究代码。
我尝试在 drupal 7 中创建一个电子商务网站。我正在使用商务模块,然后添加产品,但它没有显示产品。下面显示了一些错误,如何修复它们?
EntityMetadataWrapperException: Unknown data property commerce_product. in EntityStructureWrapper->getPropertyInfo() (line 335 of C:\xampp\htdocs\Islandmaids\sites\all\modules\entity\includes\entity.wrapper.inc). Backtrace:
您应该使用像 xdebug 这样的调试工具。有很多教程可以将调试软件集成到 IDE 中。
安装调试器后,您应该在
中的第 335 行设置断点C:\xampp\htdocs\Islandmaids\sites\all\modules\entity\includes\entity.wrapper.inc
并观察哪些值被传递给函数或者调用堆栈中可能有哪个自定义模块。有了这些信息,您可以通过设置更多断点来更深入地研究代码。