使用Golang如何将内容打印到浏览器控制台?

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

How to print into browser console using golang

问题

我正在使用Golang开发我的小型Web应用程序,我想知道在Golang中是否有任何方法可以将任何内容打印到浏览器控制台。

我正在使用Go版本go1.7.4 linux/amd64。

在这里,我只想将一些值(例如重定向URL)打印到Web浏览器的控制台。

英文:

i am using golang to develop my small web app and i just wanted to know are there are any ways in golang from which i can print anything into browser console.

I am using Go version go1.7.4 linux/amd64.

Here i just want to print some values for example redirect url's into web browser's console
使用Golang如何将内容打印到浏览器控制台?

答案1

得分: 3

不。

Go语言无法在浏览器中运行(除非你使用GopherJS或类似工具),因此无法通过Go语言向浏览器控制台输出内容。你需要使用JavaScript来完成这个任务。

英文:

No.

Go doesn't run in your browser (unless you're using GopherJS or similar), so there's no way for Go to write to your browser's console. You must do that from JavaScript.

huangapple
  • 本文由 发表于 2017年4月18日 14:22:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/43464994.html
匿名

发表评论

匿名网友

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

确定