Giter Site home page Giter Site logo

Comments (2)

lode avatar lode commented on June 1, 2024 1

I guess the trace contains too much data to pass through json_encode() in a nice way.

There's two workarounds I can think of:

  1. skip the trace:
$options = ['includeExceptionTrace' => false];
$document = ErrorsDocument::fromException($exception, $options);

This completely ignores the trace and thus prevents this issue. However, you won't see any trace in the response.

  1. filter the output and pass it as new input to sendResponse():
// get the data which would be send as response
$responseArray = $document->toArray();

// filter out what you don't want
foreach ($responseArray['errors'] as &$error) {
	if (isset($error['meta']['trace']) === false) {
		continue;
	}
	
	foreach ($error['meta']['trace'] as &$trace) {
		if (isset($trace['args']) === false) {
			continue;
		}
		
		foreach ($trace['args'] as $index => &$argument) {
			if ($argument instanceof Laravel\Lumen\Application) {
				unset($trace['args'][$index]);
			}
		}
	}
}

// convert array to json
$options = ['array' => $responseArray];
$responseJson = $document->toJson($options);

// pass custom json to send as response
$options = ['json' => $responseJson];
$document->sendResponse($options);

Obviously, this is more cumbersome and less performant.

from jsonapi.

ezandonai avatar ezandonai commented on June 1, 2024

Well, looking better, I found that the problem occurs when trying to turn exceptions into a json.
This line on Document file. into toJson method.
image

This occurs because the trace has a Laravel\Lumen\Application instance.
Like can be see it below:
image

I don't know why or how fix this.
Somebody can help me?

from jsonapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.