上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 52 下一页
摘要: 一、代码 function setQueryString(key, val) { var url = window.location.href.split('?'), search=url[1]; //获取地址栏 "?"后的内容 var query = {}; if (search) { searc 阅读全文
posted @ 2021-12-25 16:18 样子2018 阅读(354) 评论(0) 推荐(0)
摘要: 一、代码 <div class="layui-col-xs3" style="text-align: right;"> <button type="button" id="send-sms-btn" class="layui-btn" onclick="sendSms()">发送</button> 阅读全文
posted @ 2021-12-08 14:25 样子2018 阅读(248) 评论(0) 推荐(0)
摘要: 一、代码 (function () { 'use strict' var devtools = { open: false, orientation: null } var threshold = 160 var emitEvent = function (state, orientation) { 阅读全文
posted @ 2021-12-08 13:09 样子2018 阅读(446) 评论(0) 推荐(0)
摘要: 在vue项目根目录下创建vue.config.js文件,如果不是在网站根目录下,设置publicPath。 module.exports = { publicPath: './', assetsDir: 'static', outputDir: 'dist' } 阅读全文
posted @ 2021-11-19 10:30 样子2018 阅读(374) 评论(0) 推荐(0)
摘要: npm install vue-router --save npm install vue-resource --save npm install vuex --save 一、代码 import Vue from 'vue' import App from './App.vue' import Vu 阅读全文
posted @ 2021-11-13 11:20 样子2018 阅读(41) 评论(0) 推荐(0)
摘要: /** * 判断是否是手机 * @return bool */ function is_mobile() { $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? tru 阅读全文
posted @ 2021-11-11 10:30 样子2018 阅读(255) 评论(0) 推荐(0)
摘要: 一、效果图 阅读全文
posted @ 2021-09-27 10:55 样子2018 阅读(784) 评论(0) 推荐(0)
摘要: 一、代码 public function export($month) { $year = date("Y", time()); //要导出的数据 $data =array(); $day_number = date("t", strtotime($year."-".$month)); vendor 阅读全文
posted @ 2021-09-27 09:32 样子2018 阅读(264) 评论(0) 推荐(0)
摘要: 一、接口安全 所谓接口安全,就是你请求数据地址不能随便访问,可以做Token验证。 参考:https://www.cnblogs.com/yang-2018/p/14889519.html 二、数据安全 所谓数据安全,就是不能被别人抓包直接看到透明数据,可以在后端对数据加密,然后在小程序把数据解密出 阅读全文
posted @ 2021-09-14 09:21 样子2018 阅读(262) 评论(0) 推荐(0)
摘要: 一、简单代码 $fileImage = 'https://域名/202109/11/134923278422.png'; $imgPathInfo =pathinfo($fileImage); $basename = $imgPathInfo['filename'].'png'; $filename 阅读全文
posted @ 2021-09-13 09:11 样子2018 阅读(632) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 52 下一页