微信小程式獲取當前使用者的openid

2022-06-06 12:45:10 字數 1106 閱讀 1119

獲取openid看了些網上的文章沒獲取到也許是我get到找到了一篇借鑑然後自己也搞出來了

首先要去小程式介面文件看以下這幾個介面

functionwx.setstoragesync(key: string): void

將 data 儲存在本地快取中指定的 key 中,會覆蓋掉原來該 key 對應的內容,這是乙個同步介面。

wx.request({})

functionwx.setstoragesync(key: string): void //此介面可以設定openid到快取中

將 data 儲存在本地快取中指定的 key 中,會覆蓋掉原來該 key 對應的內容,這是乙個同步介面。

現在來上**........................

首先建立乙個環境單擊按鈕獲取當前使用者的openid

test.wxml

<

text

>}

text

>

<

button

type

="default"

bindtap

="open"

>獲取openid

button

>

js點選事件獲取當前使用者的openid

test.js

page(,

open:function();

if (res.code) ,

method: 'get',

header: header,

success: function (res) );

console.log(openid+'我的openid')

wx.setstoragesync('openid', openid) //儲存openid

if (openid != null & openid != undefined) ,

fail: function (res)

});

}else

},fail: function (res) })}

}})

}})

效果只能在真機除錯或者電腦模式下才能看出來,注意預覽是看不出來的

微信小程式獲取使用者當前位址

第一步 申請秘鑰。需要開發者手機號碼和郵箱來進行註冊,然後就會分配乙個秘鑰給我們,後續在 中需要用到,也是使用sdk的唯一標識。進入key管理填寫相關資訊 注意 一點要填寫webservice也就是你開發的電腦的ip 如果不設定的話將無法正常呼叫 下面就是呼叫sdk了 js data var qqm...

微信小程式 獲取當前座標

獲取位置 get.location type wgs84 是全球定位系統,獲取的座標,gcj02是國家測繪局給出的座標 btnclick function fail function res complete function 檢視位置 有兩個 第乙個 wx.chooselocation 可以開啟地...

微信小程式獲取當前時間戳 獲取當前時間 時間戳加減

獲取當前時間戳 var timestamp date.parse new date timestamp timestamp 1000 console.log 當前時間戳為 timestamp 獲取當前時間 var n timestamp 1000 var date new date n 年 var ...