PHP发送响应后发送另一个链接

时间:2016-05-17 08:42:48

标签: laravel return response

我的一个系统需要实现这样的方式,在获得我的链接后我回复了一个

return response('Unauthorized', 401);

AsyncHttpClient client = new AsyncHttpClient();
        client.get("http://localhost:3000",new AsyncHttpResponseHandler() {
            @Override
            public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
                try {
                    String response = responseBody == null ? null : new String(
                            responseBody, getCharset());
                    Log.d("Response: ", response);
                    Gson gson = new Gson();
                    Person[] arr = gson.fromJson(response, Person[].class);

                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                }
            }

现在,我需要实现这样的方式,在返回ok响应后,我需要通过另一个链接。我该如何实现呢?我正在使用php laravel。我不确定这些是如何工作的。我是否可以通过其他方式去另一条路线?

感谢。

1 个答案:

答案 0 :(得分:1)

尝试:

@media only screen and (min-width: 320px) and (max-device-width: 568px),
@media only screen and (min-width: 360px) and (max-device-width: 640px),
@media all and (max-width: 768px) {
  .lower-content .lower-sidebar.col-xs-12 {
    padding: 2em 0 0 0;
  }
} 

return response()->setStatusCode(200, 'OK');

对于重定向,您可以使用return response()->setStatusCode(401, 'Unauthorized'); 函数。如果响应正常,那么您可以为redirect()另一个redirect获取所需内容。

route