duanliang9288 2011-11-09 09:53 采纳率: 100%
浏览 21
已采纳

从Twig到控制器操作的Symfony2 POST值

I'm new in Symfony2.I want to post a value from twig to controller. I know how to pass values through url. But i want How to post a data from twig to a controller action without passing that values to url?

  • 写回答

1条回答 默认 最新

  • dtihe8614 2011-11-09 09:59
    关注

    This is not a limitation of symfony, but the http protocol: you can pass values using either GET or POST parameters. GET valuas are passed by simple urls, for post you need to use forms or javascript.

    It is only a symfony2 related question if you want to embedd another controller in your view - for this, see the documentation

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?