mypy 说 request.json returns Optional[Any],我该如何解决?

mypy says request.json returns Optional[Any], how do I solve?

我正在努力更好地理解 mypy。对于下面这行代码:

request_body: dict = {}
request_body = request.get_json()

mypy returns一个错误:

error: Incompatible types in assignment (expression has type "Optional[Any]", variable has type "Dict[Any, Any]")

正确的解决方法是什么?

正如您在以下摘自 /wekzeug/wrappers/request.py 的代码中所见,函数 get_json 并不总是 return 字典。我建议从变量中删除类型提示,因为它可以是 None 或字典。

def get_json(
        self, force: bool = False, silent: bool = False, cache: bool = True
    ) -> t.Optional[t.Any]:
        """Parse :attr:`data` as JSON.

        If the mimetype does not indicate JSON
        (:mimetype:`application/json`, see :meth:`is_json`), this
        returns ``None``.

        If parsing fails, :meth:`on_json_loading_failed` is called and
        its return value is used as the return value.

        :param force: Ignore the mimetype and always try to parse JSON.
        :param silent: Silence parsing errors and return ``None``
            instead.
        :param cache: Store the parsed JSON to return for subsequent
            calls.
        """
        if cache and self._cached_json[silent] is not Ellipsis:
            return self._cached_json[silent]

        if not (force or self.is_json):
            return None

        data = self.get_data(cache=cache)

        try:
            rv = self.json_module.loads(data)
        except ValueError as e:
            if silent:
                rv = None

                if cache:
                    normal_rv, _ = self._cached_json
                    self._cached_json = (normal_rv, rv)
            else:
                rv = self.on_json_loading_failed(e)

                if cache:
                    _, silent_rv = self._cached_json
                    self._cached_json = (rv, silent_rv)
        else:
            if cache:
                self._cached_json = (rv, rv)

        return rv

这一行专门导致方法 return None:

except ValueError as e:
            if silent:
                rv = None```