我从哪里重定向的页面:
<a class="uk-overlay" href="{{ path("shot.view",{"id" : id}) }}">
<img class="uk-border-rounded" src="{{ largeSquare(shot) }}">
<div class="uk-overlay-area uk-border-rounded">
<div class="uk-align-right uk-margin-small-top">
{% if is_granted('ROLE_USER') %}
{% if app.user.isOwnStar( id ) %}
<button class="uk-icon-button uk-icon-star uk-margin-small-right" style="background: #00a8e6;"></button>
{% else %}
<button class="uk-icon-button uk-icon-star uk-margin-small-right" onclick="window.location='{{ path("shot.giveStar",{"id" : id}) }}'"></button>
{% endif %}
{% if app.user.isOwnFavorite( id ) %}
<button class="uk-icon-button uk-icon-heart uk-margin-small-right" style="background: #d32c46;"></button>
{% else %}
<button class="uk-icon-button uk-icon-heart uk-margin-small-right" onclick="window.location='{{ path("favorite.add",{"id" : id}) }}'"></button>
{% endif %}
{% endif %}
</div>
</div>
</a>
这是一个带有锚点和叠加层的图像,其中包含一些链接。因为不可能做嵌套锚点,所以我设置了这个按钮与javascript重定向。
主要问题是,没有执行被调用的symfony路由(来自按钮)脚本:
public function giveStarAction(Application $app, Request $request, $id)
{
$msg = $this->shotManager->giveStar($app['user']->getId(),$id);
$app['session']->getFlashBag()->add('info', $msg );
exit;
return $app->redirect( $app->path('shot.view', array('id' => $id) ) );
}
例如路由path("shot.giveStar",{"id" : id})
前三行被忽略,只执行了redirect命令......
我需要更改哪些代码在重定向之前执行?
答案 0 :(得分:2)
及其
window.location.href = ''
// or
window.location.replace("")