英文:
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
答案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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论