silex

    1熱度

    1回答

    我在生產項目中遇到了Silex空白頁的問題。 如何清空緩存?我試着用php bin/console cache:clear --no-warmup -e prod但我有此錯誤: [Symfony\Component\Console\Exception\CommandNotFoundException] There are no commands defined in the "cache"

    0熱度

    1回答

    我可以更改驗證消息,甚至可以使用翻譯組件翻譯它。 $errors = $app['validator']->validate($email, new Assert\Email(array( 'message' => 'The email "{{ value }}" is not a valid email.' ))); 但它仍然增加了消息前場內容和一些代碼後: foobar : Th

    1熱度

    1回答

    我試圖在Twig上使用兩個for循環來生成名稱和每個表單元素。出於某種原因,我得到一些表達問題,但真的找不到問題。也許有人可以幫忙。 {% for l in 1..line %} <div class="row"> {% for r in 1..row %} {% set form_name = "name_l_"~l~"_r_"~r~"_a" %} <div c

    1熱度

    1回答

    我需要從之前得到一個變量的硅石,並獲得它的中間件外: $app->before(function (Request $request, Application $app) { if ($request->getMethod() !== "OPTIONS") { $bearer = $request->headers->get('Authorization'); $

    0熱度

    1回答

    我有一個基於Silex的應用程序,我使用Doctrine作爲我的ORM。 我有一個問題,我試圖讓用戶試圖重用電子郵件時出現乾淨的錯誤,我發現驗證器UniqueEntity,但它似乎是爲Symfony的完整堆棧版本設計的。 我的問題是,這是真的嗎?我正在做一個假設,因爲我沒有找到任何人在Symfony之外成功使用它。 我的第二個問題是,如果我無法使用UniqueEntity,那麼我的下一個最佳選擇是

    0熱度

    1回答

    我已經寫了一個類,每次執行功能測試時都會在DB中加載一些燈具。創建這些燈具時會調用一個服務,在創建一些數據之後,它將調度一個事件,以便從偵聽器創建其他數據。問題是加載燈具時監聽器沒有執行。 我是否需要模擬所有事件派遣以使偵聽器被執行?我的意思是,從夾具加載方法手動調度所需的事件?爲什麼不執行偵聽器? $app->register(new SubscribersServiceProvider());

    0熱度

    1回答

    登錄頁這是我的防火牆代碼 $app['security.firewalls']=[ 'secured'=>[ 'pattern' => '/', 'anonymous' => true, 'http'=>true, 'form' => array('login_path' => '/login', 'check_path' => '/sec

    2熱度

    1回答

    我正在寫一個Silex的登錄應用程序,但我有一個Silex密碼編碼器的問題。我的硅石文檔閱讀,並得到一些像這樣的代碼: // find the encoder for a UserInterface instance $encoder = $app['security.encoder_factory']->getEncoder($user); // compute the encoded p

    2熱度

    1回答

    如何在Silex應用中傳遞URL? 我定的規範是: http://mysilex.app/http://anotherurl.com 所以,我想用它在我的應用程序是這樣的: $app->get('/{url}', function ($url) { //do awesome things with $url(=http://anotherurl.com) return $u

    0熱度

    2回答

    我正在努力與Silex及其項目結構。我現在使用PHP已經有10年了,但我總是使用Np ++之類的工具。現在我開始使用PhpStorm,我覺得自己像個新手一樣。 我試圖,是創建Silex的項目。開始一個新的作曲家項目後,我得到以下結構: --doc --src ----Silex ------[Some Silex files] --tests --vendor [some rootfi