我在从Laravel的数据库中获取一些信息时遇到了一些问题。我尝试使用where方法并指定我需要的id,但我总是遇到这样的错误
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: The GET method is not supported for this route.Supported methods: POST.function select_categor
如果我正在调用一个网络APi服务,而该服务对其他服务进行了各种其他调用,我应该使用POST还是GET?为了进一步阐述,让我们假设我调用Web Api Service One来表示'Do the thing‘。因此,当被请求时,Web Api One的工作是从服务2获取数据并将数据发布到服务3。我的问题