您好,登錄后才能下訂單哦!
這篇文章主要介紹“微信小程序服務通知功能如何實現”,在日常操作中,相信很多人在微信小程序服務通知功能如何實現問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”微信小程序服務通知功能如何實現”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
下面直接上代碼:
wxml:
<form name='pushMsgFm' report-submit bindsubmit='form'>
<button form-type="submit">submit</button>
</form>
js:
// pages/index/index.js
Page({
data: {
},
/*
微信公眾平臺測試連接 https://mp.weixin.qq.com/debug/
全局返回碼說明:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1433747234
*/
onLoad: function (options) {
var that = this
wx.login({
success: function (data) {
console.log(data.code, data)
// 獲取openid
wx.request({
url: 'https://api.weixin.qq.com/sns/jscode2session?appid=你的自己的appid&secret=你自己的session_key&js_code=' + data.code ,
header: { "Content-Type": "application/x-www-form-urlencoded" },
method: "post",
success: function (res) {
console.log(res, "opind")
that.setData({
openid: res.data.openid,
session_key: res.data.session_key,
})
}
})
}
})
// 獲取access_token
wx.request({
url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=你的自己的appid&secret=你自己的session_key',
method: "GET",
success: function (res) {
console.log(res, "res")
console.log(res.data.access_token, "access_token")
that.setData({
access_token: res.data.access_token,
})
}
})
},
// 點擊執行方法
form: function (e) {
var that = this;
var fId = e.detail.formId;
// 網絡請求
var l = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=' + that.data.access_token;
// 需要傳的參數
var d = {
touser: that.data.openid, //用戶的openid
template_id: 'XX1hceIwI1XiQaUc5Z4qIrZnYQkYEHElSq5m6yIa0M8',//這個是申請的模板消息id,位置在微信公眾平臺/模板消息中添加并獲取
page: '/pages/index/index', //點擊通知跳轉的頁面
form_id: fId, //表單提交場景下,為 submit 事件帶上的 formId
//此處必須為data,只有人說value也可以,可能官方已經修復這個bug
data: {
"keyword1": {
"value": "酒店",
"color": "#4a4a4a"
},
"keyword2": {
"value": "2018-03-22",
"color": "#9b9b9b",
},
"keyword3": {
"value": "$300",
"color": "#9b9b9b"
},
"keyword4": {
"value": "中國",
"color": "#9b9b9b"
},
},
color: '#ccc',
emphasis_keyword: 'keyword1.DATA'
}
wx.request({
url: l,
data: d,
method: 'POST', //此處不能有請求頭
success: function (res) {
console.log(res, "push msg");
},
fail: function (err) {
console.log(err, "push err");
}
});
},
})
最后編譯,點擊提交發起請求,這里只能手機調試,我用開發工具打印出來的formId: "the formId is a mock one"并不是數字串。此處需要真機測試才能成功
到此,關于“微信小程序服務通知功能如何實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。