5.4 微信分享

最后更新于:2022-04-01 23:33:58

# 分享 写一个具体实例 [https://github.com/i5ting/wx_jsapi_sign](https://github.com/i5ting/wx_jsapi_sign) ## 获取签名信息 ~~~ app.post('/getsignature', function(req, res){ var url = req.body.url; console.log(url); signature.getSignature(config)(url, function(error, result) { if (error) { res.json({ 'error': error }); } else { res.json(result); } }); }); ~~~ ## 页面 ~~~ ';