dqq22391 2015-01-21 13:21
浏览 59
已采纳

转换Symfony2 PHP实体对象以在Javascript中使用

I'm attempting to open up data from a PHP Object (as shown below) but I'd like to be able to access this data within JavaScript to use in a graphing library.

Object in question:

http://puu.sh/eP3QZ/e4289eb0d8.png

What I need to be able to do is convert that into a JSON encoded object for use within Javascript.

I tried using twig within Symfony to do this via:

{% set playerStats = match.getStatsPlayers().getValues() }%
{% dump(playerStats) %} // This is what you see above

var playerStats = {{ playerStats|json_encode }};

console.log(playerStats);

The console shows this:

http://puu.sh/eP4aX/adf6c9978f.png

Which is where I'm banging my head against the wall. Where can I access the values of these properties?

As an inefficient way, I've managed to get it into a JavaScript object by doing:

{% for p in playerStats %}
    playerStats.push({ 'id': {{p.playerID}}, 'playerName': '{{p.playerName}}', 'playerOutfit': {{p.playerOutfit}}, 'playerFaction': {{p.playerFaction}}, 'playerKills': {{p.playerKills}}, 'playerDeaths': {{p.playerDeaths}}, 'playerTeamKills': {{p.playerTeamKills}}, 'playerSuicides': {{p.playerSuicides}} });
{% endfor %}

I feel kinda dirty for doing that. There must be a better way to do this surely?

Thanks in advance!

  • 写回答

1条回答 默认 最新

  • drq1257 2015-01-21 13:32
    关注

    You can use the Symfony Serializer. http://symfony.com/doc/current/components/serializer.html

    You might want to write your own Twig extension to do this from within your template.

    Your code will look something like this:

    use Symfony\Component\Serializer\Serializer;
    use Symfony\Component\Serializer\Encoder\JsonEncoder;
    use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;
    
    $encoders = array(new JsonEncoder());
    $normalizers = array(new GetSetMethodNormalizer());
    
    $serializer = new Serializer($normalizers, $encoders);
    
    $jsonContent = $serializer->serialize($object, 'json');
    

    When you put that string into your javascript, you should have a normal JS object where you can find everything you want.

    You might want to use the JMSSerializerBundle, as it already has a Twig extension, and is easier to use in general.

    https://github.com/schmittjoh/JMSSerializerBundle/blob/master/Resources/doc/index.rst


    An update to give a quick overview of what is in the comments.

    Both the Symfony Serializer as the JMSSerializerBundle seem to have a hard time coping with Bi-directional relations (most likely Doctrine). This will result in errors like "Out of memory" or something mentioning "Self-referencing" objects / infinite loops.

    To solve this, you can ignore the attribute with the Normalizer. Which will look something like:

    use Symfony\Component\Serializer\Serializer;
    use Symfony\Component\Serializer\Encoder\JsonEncoder;
    use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;
    
    $normalizer = new GetSetMethodNormalizer();
    $normalizer->setIgnoredAttributes(array('match')); //Replace match with the parent attribute
    $encoder = new JsonEncoder();
    
    $serializer = new Serializer(array($normalizer), array($encoder));
    $serializer->serialize($object, 'json');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵