Specifically, how to connect <input type="file">
with this function in Go?
I know there is “syscall/js” package, but I didn’t find any examples with file reading.
JavaScript
x
17
17
1
func parseCSVFile(filePath string) []LabelWithFeatures {
2
fileContent, _ := ioutil.ReadFile(filePath)
3
lines := bytes.Split(fileContent, newline)
4
numRows := len(lines)
5
6
labelsWithFeatures := make([]LabelWithFeatures, numRows-2)
7
8
for i, line := range lines {
9
// skip headers
10
if i == 0 || i == numRows-1 {
11
continue
12
}
13
labelsWithFeatures[i-1] = NewLabelWithFeatures(bytes.Split(line, comma))
14
}
15
return labelsWithFeatures
16
}
17
Advertisement
Answer
I’ve wanted a satisfactory answer for this for years, finally figured it out the other night.
You can essentially boil the whole thing down to:
JavaScript
1
16
16
1
fileInput := document.Call("getElementById", "fileInput")
2
3
fileInput.Set("oninput", js.FuncOf(func(v js.Value, x []js.Value) any {
4
fileInput.Get("files").Call("item", 0).Call("arrayBuffer").Call("then", js.FuncOf(func(v js.Value, x []js.Value) any {
5
data := js.Global().Get("Uint8Array").New(x[0])
6
dst := make([]byte, data.Get("length").Int())
7
js.CopyBytesToGo(dst, data)
8
// the data from the file is in dst - do what you want with it
9
10
11
return nil
12
}))
13
14
return nil
15
}))
16
I wrote a little blog post about it here with the working WASM code running at the bottom