getSettings中的值移动到getConfiguration调用。 不需要调用,因此我需要删除该方法,但其响应应该是配置服务响应的一部分。
/**
* @Route("/config", name="app_config")
* @return \Symfony\Component\HttpFoundation\JsonResponse
*/
public function getAppConfigurationAction()
{
$data = [
'linkedin' => true,
'xceedium' => true
];
return $this->success($data);
}
/**
* @Route("/home", name="home_screen")
* @return \Symfony\Component\HttpFoundation\JsonResponse
*/
public function getHomeScreenApplicationSettings()
{
$data = [
'liveFeed' => 'fasle',
'1 Xceed ' => '20 Euro'
];
return $this->success($data);
}
答案 0 :(得分:0)
如何将getHomeScreenApplicationSettings
的内容合并到getAppConfigurationAction
像这样:
/**
* @Route("/config", name="app_config")
* @return \Symfony\Component\HttpFoundation\JsonResponse
*/
public function getAppConfigurationAction()
{
$data = [
'linkedin' => true,
'xceedium' => true,
'liveFeed' => 'fasle',
'1 Xceed ' => '20 Euro'
];
return $this->success($data);
}
如果有人使用删除的路线/home
我希望我理解你的关注,如果没有,请不要犹豫指导我。)