gpt4 book ai didi

string - 如何在 Go 中将表单输入作为 Float64

转载 作者:IT王子 更新时间:2023-10-29 02:34:30 24 4
gpt4 key购买 nike

我有一个使用 Go 构建的网络表单。用户输入一个数字,然后我需要对该数字进行一些数学运算。似乎所有使用 http 包的方法都使用字符串作为输出。

如何对用户输入进行简单的数学计算?

这是我的基本代码:

func init() {
http.HandleFunc("/", root)
http.HandleFunc("/result", result)
}

// handle the root url
func root(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, inputForm)
}

// root url html
const inputForm = `<html>
<body>
<form action="/result" method="post">
<div>Number between 0 and 1
<input type="text" name="anar">
</div>
</form>
</body>
</html>
`

func result(w http.ResponseWriter, r *http.Request) {
input := r.FormValue("anar") // FormValue is always string

// add number to input
newNum := input + 0.25

// stuff to output result
}

最佳答案

首先使用 strconv.ParseFloat 将输入转换为 float

fval, err := strconv.ParseFloat(input, 64)

if err != nil {
log.Println(err)
//do something about it
}

newNum = fval + 0.25

关于string - 如何在 Go 中将表单输入作为 Float64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25070475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com