####代码如下: #####wxml文件 <view class="search"> <view class="search_arr"> <icon class="searchcion" size="20" type="search"></icon> <input placeholder="请输入 ...
分类:
微信 时间:
2020-07-03 09:15:48
阅读次数:
208
背景介绍: 用户通过浏览器访问Nginx -> html下的mysql.php文件,去连接Mysql数据库的一个测试 正文: 1.检查确保nginx、php-fpm、mysql的服务都是正常启动的 2.mysql.php测试Mysql的代码 //这里要说明一下,PHP5和PHP7连接Mysql的区别 ...
分类:
数据库 时间:
2020-07-03 01:13:42
阅读次数:
106
数组中的重复数字 题目描述 Java代码 、import java.util.*; public class Solution { // Parameters: // numbers: an array of integers // length: the length of array numbe ...
分类:
编程语言 时间:
2020-07-03 01:09:01
阅读次数:
81
import java.util.HashMap; /* 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 输入: "bbbbb" 输出: 1 解释: ...
分类:
其他好文 时间:
2020-07-03 00:46:46
阅读次数:
62
public class SelectionSort { public static void selectionSort(int[] arr) { //边界判断 if (arr == null || arr.length < 2) { return; } //1.控制范围 i~n-1 for (i ...
分类:
编程语言 时间:
2020-07-02 21:38:28
阅读次数:
62
为何与0xff进行与运算 为何与0xff进行与运算 在剖析该问题前请看如下代码 public static String bytes2HexString(byte[] b) { String ret = ""; for (int i = 0; i < b.length; i++) { String ...
分类:
其他好文 时间:
2020-07-02 20:08:15
阅读次数:
57
Firefox 密码脱取 正常获取 访问 about:logins 配置文件获取 信息: Website address Username Password Created Last modified Last used 保存位置 %APPDATA%\Mozilla\Firefox\Profiles ...
分类:
其他好文 时间:
2020-07-02 19:46:09
阅读次数:
64
来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=878一、MySQL5.1安装打开下载的安装文件,出现如下界面:mysql安装向导启动,点击“Custom”“next”继续如需改变安装目录,改一下这个就好了,其它的自己会变下面这个是设置mysql的数据库目录,默认是C:\ProgramData\MySQL\MySQLServer5.1\一定要记得改
分类:
数据库 时间:
2020-07-02 18:09:50
阅读次数:
76
如何做到 ueditor批量上传word图片? 1、前端引用代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.d ...
分类:
其他好文 时间:
2020-07-02 16:47:10
阅读次数:
71
话不多说直接上代码 for (let i = 0; i < _this.data.comment.length; i++) { if (e.currentTarget.dataset.id==_this.data.comment[i].id) { console.log(_this.data.com ...
分类:
微信 时间:
2020-07-02 16:29:48
阅读次数:
236