Serialize ``obj`` to a JSON-formatted string. The serialization will be configured according to the config associated with this EnvironBuilder's ``app``.
(self, obj: t.Any, **kwargs: t.Any)
| 86 | super().__init__(path, base_url, *args, **kwargs) |
| 87 | |
| 88 | def json_dumps(self, obj: t.Any, **kwargs: t.Any) -> str: |
| 89 | """Serialize ``obj`` to a JSON-formatted string. |
| 90 | |
| 91 | The serialization will be configured according to the config associated |
| 92 | with this EnvironBuilder's ``app``. |
| 93 | """ |
| 94 | return self.app.json.dumps(obj, **kwargs) |
| 95 | |
| 96 | |
| 97 | _werkzeug_version = "" |