上一页 1 2 3 4 5 6 ··· 49 下一页
摘要: 一、开发文档 https://uniapp.dcloud.net.cn/tutorial/app-oauth-apple.html 二、示例 appleLogin() { uni.login({ provider: 'apple', success: function(loginRes) { con 阅读全文
posted @ 2024-05-20 09:22 样子2018 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 一、explain语句 EXPLAIN [EXTENDED] SELECT select_options 二、字段分析 1、id select识别符。这是select的查询序列号,id的值越大优先级别越高,越先被执行,如果id相同,执行顺序右上至下 2、select_type select_type 阅读全文
posted @ 2024-05-15 11:28 样子2018 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 一、效果图 二、代码示例 <!doctype html> <html lang="zh"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Comp 阅读全文
posted @ 2024-04-09 16:07 样子2018 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 一、配置 1、uni-push1.0文档 https://uniapp.dcloud.net.cn/unipush-v1.html 2、服务端推送文档 https://docs.getui.com/getui/server/rest_v2/push/ 二、客户端 1、App.vue import p 阅读全文
posted @ 2024-03-23 10:06 样子2018 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 一、配置 1、微信开放平台,创建移动应用与绑定小程序 2、manifest.json,填写移动应用的appid 二、打开小程序 plus.share.getServices(res => { var is_weixin = res.find(i => i.id 'weixin'); if (is_w 阅读全文
posted @ 2024-03-23 09:44 样子2018 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 一、安装think-auth composer require 5ini99/think-auth 二、数据表 -- -- think_auth_rule,规则表, -- id:主键,name:规则唯一标识, title:规则中文名称 status 状态:为1正常,为0禁用,condition:规则 阅读全文
posted @ 2024-02-02 15:38 样子2018 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 一、创建控制器 <?php namespace app\common\taglib; use think\auth\Auth; use think\template\TagLib; class MyTag extends TagLib { protected $tags = [ 'auth' => 阅读全文
posted @ 2024-02-02 15:17 样子2018 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 一、安装环境 可从Oracle官方下载jre安装包:https://www.oracle.com/java/technologies/downloads/#java8 将jre命令添加到临时环境变量中 二、生成证书 keytool -genkey -alias testalias -keyalg R 阅读全文
posted @ 2024-01-18 10:03 样子2018 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: 一、需求 没有登录时直接跳转到登录页,登录成功后,每次都跳转到首页。 二、实现 1、在manifest.json中关闭默认启动界面:splashscreen中属性都改为false 2、在App.vue中添onLaunch中加如下代码 阅读全文
posted @ 2024-01-15 10:09 样子2018 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 一、安装 composer require workerman/phpsocket.io 二、服务端和客户端连接 <?php require_once './vendor/autoload.php'; use Workerman\Worker; use PHPSocketIO\SocketIO; $ 阅读全文
posted @ 2023-12-30 13:47 样子2018 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 49 下一页