開始使用symfony並且遇到了服務問題。運行Symfony服務時遇到問題
... \程序\ CONFIG \ services.yml
app.pdf.service:
class: AppBundle\Service\PdfService
arguments: [format, orientation]]
... \ SRC \的appbundle \服務\ PdfService.php
namespace AppBundle\Service;
class PdfService
{
private $format;
private $orientation;
public function __construct($format, $orientation)
{
$this->format = $format;
$this->orientation = $orientation;
}
}
現在我嘗試使用該服務附:
$this->container->get('app.pdf.service');
我忘了什麼嗎? $ this-> container-> get(ist working,cause I invoked the tcpdf/Service from whiteoctober/tcpdf-bundle。我將擴展這個服務,因爲我需要更多的功能。 s00n n00n
出現錯誤信息? – mblaettermann
'arguments:[format,orientation]]' - >多餘一個括號']'?? – yceruto
thx,但只是一個複製和粘貼錯誤。在我的IDE中設置第二個支架。 – n00n