在 GopherJS 中,對象的成員本身就是對象(就像 js 處理底層事物一樣,ttbomk)。因此,當訪問成員時,會返回*js.Object:func makeRID(o *js.Object) string { // access the array of numbers in member RID: arr := o.Get("RID") // arr is now a *js.Object - not an []interface{} - which is what I actually need (and what the contents of the property RID really are...}傳入的o是一個 js 對象,該對象是從服務器的 JSON 響應中提取的。它的成員“RID”是字節(jié)值數(shù)組 - 例如{ RID: [ 136, 210, 92, 97, 152, 26, 17, 233, 147, 147, 8, 0, 39, 223, 163, 7 ],......我沒有谷歌搜索,也沒有在 gopherjs 的 js 文檔中看到任何關(guān)于如何從 *js.Object 到相當于 js 數(shù)組的 gopherjs 的明確指示,即[]interface{}有想法嗎?*js.Object -> []interface{}
1 回答

慕慕森
TA貢獻1856條經(jīng)驗 獲得超17個贊
嗚嗚——明白了!感謝您的建議:)
func makeRID(o *js.Object) string {
// access the array of numbers in member RID:
jsRID := o.Get("RID")
// I know that the source object's RID member is an Array, so we can access it in gopherjs as:
jsArray := jsRID.Interface().([]interface{})
// ... profit!
}
- 1 回答
- 0 關(guān)注
- 176 瀏覽
添加回答
舉報
0/150
提交
取消