- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我开始学习教程(作为新手),一切正常,直到:
http://symfony.com/doc/current/book/page_creation.html#creating-a-page-route-and-controller在步骤创建页面:路由和 Controller
我创建了一个名为 /var/www/html/[projekt]/src/AppBundle/Controller/LuckyController.php 的文件
但是当我打开 http://[Server-IP]:8000/app_dev.php/lucky/number总是得到 404:
No route found for "GET /lucky/number"
404 Not Found - NotFoundHttpException
1 linked Exception: ResourceNotFoundException »
[2/2] NotFoundHttpException: No route found for "GET /lucky/number" +
[1/2] ResourceNotFoundException: +
routing.yml
app:
resource: "@AppBundle/Controller/"
type: annotation
Controller
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
class LuckyController
{
/**
* @Route("/lucky/number")
*/
public function numberAction()
{
$number = rand(0, 100);
return new Response( '<html><body>Lucky number: '.$number.'</body></html>' );
}
}
不知道哪里错了……
错误 - 未捕获的 PHP 异常 Symfony\Component\HttpKernel\Exception\NotFoundHttpException:“在/var/www/html/[Symfony-Folder]/app/处找不到“GET/lucky/number”的路由” cache/dev/classes.php 第 2061 行
php app/console debug:route
[router] Current routes
Name Method Scheme Host Path
_wdt ANY ANY ANY /_wdt/{token}
_profiler_home ANY ANY ANY /_profiler/
_profiler_search ANY ANY ANY /_profiler/search
_profiler_search_bar ANY ANY ANY /_profiler/search_bar
_profiler_purge ANY ANY ANY /_profiler/purge
_profiler_info ANY ANY ANY /_profiler/info/{about}
_profiler_phpinfo ANY ANY ANY /_profiler/phpinfo
_profiler_search_results ANY ANY ANY /_profiler/{token}/search/results
_profiler ANY ANY ANY /_profiler/{token}
_profiler_router ANY ANY ANY /_profiler/{token}/router
_profiler_exception ANY ANY ANY /_profiler/{token}/exception
_profiler_exception_css ANY ANY ANY /_profiler/{token}/exception.css
_configurator_home ANY ANY ANY /_configurator/
_configurator_step ANY ANY ANY /_configurator/step/{index}
_configurator_final ANY ANY ANY /_configurator/final
_twig_error_test ANY ANY ANY /_error/{code}.{_format}
homepage ANY ANY ANY /
最佳答案
我刚刚添加了一个
<?php
到文件“LuckyNumberController”,它可以工作......真的很奇怪。
谢谢大家
关于php - Symfony2 : No route found for "GET/lucky/number",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31919257/
Your smiling at me is my daily dose of magic. 你嫣然的微笑是我每日享受到的魅力。 you hold a piece of me no matte
如果字符串中字符的 ASCII 值之和为偶数,则称该字符串是幸运的。该函数接受一个指向字符串的指针并返回一个 int。 如果字符串幸运则返回值为 1,否则返回值为 0。 我尝试使用以下代码,但在执行时
我正在尝试在我的网站中制作一个程序来测试不同搜索的热门搜索结果是否相同。例如,它应该表明“12”和“12”的顶部搜索结果相同,因为两者的顶部结果都是 https://en.wikipedia.org/
我正在研究一个代码挑战问题——“找到幸运的三元组”。 “幸运三元组”定义为“在列表 lst 中,对于像 (lst[i], lst[j], lst[k]) where i < j < k 这样的三元组的
如何在 Lucky Framework 的终端(查询界面)中测试/编写查询 (类似于RoR中的rails console) 最佳答案 lucky exec 命令将打开一个文本编辑器,您可以在其中键入类
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
我试图向我的儿子展示如何使用编码来解决游戏带来的问题,以及了解 R 如何处理大数据。有问题的游戏被称为“幸运26”。在这个游戏中,数字(1-12 没有重复)位于大卫之星上的 12 个点上(6 个顶点,
我在 Appstore 上有一个成功的 IOS 应用程序,其中包含应用程序内购买。最近我们注意到有些人正在使用 Lucky Patcher 或其他此类 App 来获得 App 内购买而无需付费。在研究
多年来,我最常用的 Chrome 功能一直是我配置的:我称之为“幸运百科”,将 Google 搜索的强大功能与 Wikipedia 内容结合在一起。 我在 Chrome 中手动添加了一个搜索引擎,关键
我正在一个电子商务网站(在 asp.net 和 c# 中)工作,我想在其中实现“幸运抽奖”功能。控制流程如下:- 用户将购买特定产品一天,我需要从购买了该产品的用户中选出一名作为当天的幸运抽奖者。 实
找到幸运数字实际上是个问题 - 那些数字的和和数字的平方和是质数的数字。我已经实现了 Sieve of Eratosthenes .现在为了进一步优化它,我评论了我的 getDigitSum 方法,我
我开始玩 symfony4。我刚刚创建了新的应用程序并创建了新的 LuckyController。它与以这种方式配置的 routes.yaml 一起工作: lucky: path: /luck
我开始学习教程(作为新手),一切正常,直到: http://symfony.com/doc/current/book/page_creation.html#creating-a-page-route-
我决定了解堆栈溢出的明智之处,希望能对我的问题有所了解。我是 javascript 的新手,我就读的学校给了我们一项任务来创建 Lucky 7 的程序。 说明是用户下注,单击“开始”,然后掷出两个骰子
我必须编写一个程序来找到从 0 到任意数字 n 的所有幸运数字。 这是一个幸运数字: 考虑自然数序列。 1、2、3、4、5、6、7、8、9、10、11、12、13、14、15、16、17、18、19、
我有一个书评网站。我提供了指向书籍的亚马逊条目的链接。经过一些研究后,我发现 Google 的“我手气不错”的直接 URL 是: http://www.google.com/search?hl=en&
我目前正在开发一个与 Google 云端硬盘交互的应用程序。当您使用云端硬盘注册应用程序时,它会要求提供用于签名的 key 的 SHA1。在我以前的应用程序中,我没有实现许可库,因为它似乎需要做更多的
我正在搜索一些关于悬停在按钮上的随机文本旋转的资源,并以新文本停止。就像谷歌的“我感觉很幸运”按钮一样有效。 https://www.google.com/谁能帮我做这样的事情? 问候 最佳答案 $(
我正在尝试复制 Google 的“手气不错”按钮。 但是当我点击按钮时,它会将我带到“重定向通知”页面。 我的代码如下: 最佳答案 TLDR:只需使用 DuckDuc
我是一名优秀的程序员,十分优秀!