问题标签 [symfony-2.4]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
45 浏览

php - Setup parent entity from child entity form

I am using Symfony2 for a PHP project, but I have a question about Entity inheritance.

I have a database model that requires to make the difference between different types of employees.

Here is an extract of the modelisation :

Employee

  • civility
  • name
  • firstname
  • hired_at

Secretary extends Employee

  • employee [Employee entity]
  • roles [another entity]

Seller extends Employee

  • employee [Employee entity]
  • section [another entity]

I have to separate it because I have another entity, called Message, that each employees can send to other ones.

Message

  • author [Employee entity]
  • recipient [Employee entity]
  • title
  • content
  • sent_at

In my application, I would like to be able to create a new "Secretary" for instance, and set up its "Employee" properties in the same form, rather than creating the Employee entity then link it to the new Secretary one...

What is the proper way to do it with Symfony2 ?

I know that I could add the properties to the form and set the entities manually, but I really think there should be a cleaner way to do that...

Is it possible to use the FormBuilder ?

0 投票
2 回答
1708 浏览

php - Symfony2:当找不到页面或抛出 404 错误时将用户重定向到索引页面

当 symfony2 出现找不到页面错误时,我想将用户重定向到特定页面。

对于我创建的错误页面消息的自定义

但现在我想将用户重定向到特定页面。我怎样才能做到这一点?

谢谢

0 投票
1 回答
4132 浏览

twitter-bootstrap - Symfony/bootstrap 中是否可以有一个自动完成文本框?

我将 Symfony 2.4 与 Braincrafted Bootstrap 捆绑包一起使用。我一直在寻找一种在 Bootstrap 中具有自动完成文本框的方法,但似乎我需要一个外部库来执行此操作(“Typeahead”?)。

首先,绝对不可能用 Bootstrap 原生地做到这一点吗?其次,除了Typeahead,还有什么推荐的替代品吗?

谢谢

0 投票
1 回答
439 浏览

php - 在 Symfony 2.4 Doctrine 中获取 Max of AVG

我需要在 symfony 学说中获得 AVG 列表的 MAX

我获得平均值的学说查询如下:

为了获得平均值列表的最大值,我将其修改为(在引用this之后):

我收到以下错误:

所以我切换到本机 SQL 以获得相同的结果:

我得到了结果,但 SQL 需要 23.4457 秒才能运行

谁能在 Doctrine 中提出一个简单的方法来解决这个问题。

0 投票
0 回答
1310 浏览

google-drive-api - Symfony 2.4 和 Google Drive 集成

我正在尝试将#google-drive-sdk 集成到我的项目 symfony 2.4 中,我希望在其中使用此 SDK 附加文档并在我的站点中对其进行编辑(如果有其他提示或想法我正在等待),我正在寻找一个完整的例子女巫给出一个洞的想法。我发现了这个主题Symfony2 和 Google API 集成,但它看起来缺少代码。所以,如果没有样品,你可以指导我解决它。谢谢大家。

0 投票
1 回答
826 浏览

symfony - 尝试使用 gaufrette 上传到 S3 时出错

我正在尝试使用KNPLabs gaufrette 包将图像文件上传到 S3。调试来自 S3 的响应时出现以下错误:

我尝试将 base_url 参数设置为该端点,但仍然得到相同的错误。SO上还有其他问题建议设置我也尝试过的区域。

我要上传到的存储桶位于欧盟西部地区(爱尔兰)。无论我尝试什么配置,gaufrette 似乎仍在尝试使用 s3.amazonaws.com

如何正确配置 Gaufrette?

0 投票
1 回答
71 浏览

symfony - 如何防止使用 KnpGaufretteBundle 在 S3 上创建子文件夹

我已将KnpGaufretteBundle配置为将文件上传写入 Amazon S3。文件已上传,但会添加基于当前日期命名的其他子文件夹。我怎样才能防止这种情况?

0 投票
1 回答
391 浏览

symfony - 使用带有 LiipImagineBundle 的流时如何在模板中格式化图像标签

如果我将LiipImagineBundle配置为使用流数据加载器,那么如何制作图像标签以在模板中使用该数据加载器?

更新配置

0 投票
2 回答
98 浏览

mysql - MySQL 数据库中的 Symfony 原则

我使用以下命令从 Symfony 中的 MySQL 数据库创建 Doctrine:

问题是未生成的表之一(dft_grup_pelajar)。我已经尝试过多次构建数据库,但仍然无法正常工作。我错过了什么吗?结果如下:

这里的关系http://prntscr.com/3dz2n5

0 投票
1 回答
818 浏览

sonata-admin - SonataAdminBundle 中的 PageableManagerInterface 错误

我正在尝试将 SonataAdminBundle 和 SonataUserBundle 配置为使用 mongodb 并收到以下错误:

任何人都可以阐明可能导致这种情况的原因吗?我也得到了这里描述的症状,并尝试了那里建议的答案。

谁能确认 mongodb 功能是否刚刚损坏?我还想知道这个错误是否与这个提交有关?