I am using AJAX post data to my controller.
PHP Code:
return response()->json($request->root() . '/summer-uploads/' . $store);
It returns:
"http:\/\/domain.test\/summer-uploads\/summer-uploads\/PGARvUyeXiAbbTOc90b6HGXXf9ZHmqehOA5f25pE.jpeg"
As you can see it's adding backslashes, some kind of escaping. How can i remove it, so it would be looking like this:
"http://domain.test/summer-uploads/summer-uploads/PGARvUyeXiAbbTOc90b6HGXXf9ZHmqehOA5f25pE.jpeg"
The docs does not show all the arguments to the json method.
But they are tucked away in the source.
JsonResponse->__construct():
/**
* Constructor.
*
* @param mixed $data
* @param int $status
* @param array $headers
* @param int $options
* @return void
*/
public function __construct($data = null, $status = 200, $headers = [], $options = 0)
{
//...
}
The options parameter would be the json_encode() parameters.
So for example, pretty print and unescaped slashes:
response()->json(..., 200, [], JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With