08 2023 档案
摘要:微信小程序使用接口鉴权时要用到jwt token值需要放在header中 在wx.request请求中需要将token值放在header信息中 wx.request({ url: 'http://www.tp.com/api.php/show', header:{ // wx.getStorageS
阅读全文
摘要:composer composer require phpmailer/phpmailer 封装 // 收件人的邮箱 $toemail = '1846869817@qq.com'; $mail = new PHPMailer(); // 使用SMTP服务 $mail->isSMTP(); // 编码
阅读全文
摘要:假如在one分支上并且one提交项目到仓库完毕 现在想要把one分支合并到master分支下 首先切换到master分支下 git checkout master 把远程master上的代码pull下来 git pull origin master 把one分支的代码合并到master上 git m
阅读全文
摘要:header: { 'Authorization': _this.token }, 使用ThinkPHP的话需要在public下静态文件添加 <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On R
阅读全文