第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何以數(shù)組形式訪問 JavaScript 對象

如何以數(shù)組形式訪問 JavaScript 對象

Go
Qyouu 2023-06-26 17:34:47
在 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!

}


查看完整回答
反對 回復 2023-06-26
  • 1 回答
  • 0 關(guān)注
  • 176 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號