GoGland中的调试器配置

huangapple go评论84阅读模式
英文:

Debugger configuration in GoGland

问题

我想在使用curl命令发送请求时调试我的Go应用程序。

目前我的请求由我拥有的二进制文件处理。
我希望当我使用curl命令发送请求时,请求应该由我的代码处理,而不是由二进制文件处理。

我没有找到任何关于此的文档,只找到了这个链接,但它仍然没有答案。

@Zoyd,你找到配置的方法了吗?

英文:

I want to debug my go application when I send request using curl command.

Currently my request is handled by the binary I have.
What I want that when I send request using curl command request should be handled by the code I have not by the binary.

I did not find any documentation about it, only found this thiswhich is still unanswered.

@Zoyd did you found a way to configure it?

答案1

得分: 2

我已经制作了一个简短的视频,介绍了在Gogland中如何进行调试以及如何配置调试环境:https://youtu.be/tT0Op-DYs4s。

在Println的位置,你可以使用你通常的API处理程序,然后像往常一样运行curl命令来调用你的API,只要你使用调试配置来运行。

英文:

I've made a short video of how debugging works in Gogland and how it should be configured: https://youtu.be/tT0Op-DYs4s.

In place of the Println you can have your usual api handler and then just run the curl command against your API as usual, as long as you run this with the debugging configuration.

huangapple
  • 本文由 发表于 2017年2月4日 05:26:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/42033247.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定