1.今天继续学习fragment 布局就不放了 重要代码: MyFragment.java: public class MyFragment extends Fragment { private String content; public MyFragment(String content) { ...
分类:
其他好文 时间:
2021-06-21 21:09:34
阅读次数:
0
? tinymce是很优秀的一款富文本编辑器,可以去官网下载。https://www.tiny.cloud 这里分享的是它官网的一个收费插件powerpaste的旧版本源码,但也不影响功能使用。 http://blog.ncmem.com/wordpress/2019/08/07/umeditor% ...
分类:
其他好文 时间:
2021-06-21 21:05:30
阅读次数:
0
升级原因:为了在本地安装跟公司测试服一样的服务器环境,需要把本地PHP版本从5.4升级到5.5。 操作步骤: 1. 查看当前centos版本 [root@localhost ~]# cat /etc/redhat-release 2. 根据当前centos版本,更换对应版本的RPM 源(软件仓库) ...
分类:
Web程序 时间:
2021-06-21 20:30:16
阅读次数:
0
<el-collapse v-model="activeNames" @change="handleChange"> <el-collapse-item name="1"> <span class="collapse-title" slot="title">{{ collapseTitle }}</ ...
分类:
其他好文 时间:
2021-06-21 20:27:07
阅读次数:
0
1、请求答题接口 2、判断用户是否答对,答对的话跳到下一题,答错的话弹窗告诉用户有错题,请重新答题 <div class="active_title"> <span>{{ orderTitle }}</span> </div> <p v-show="toanswer" ref="question"> ...
分类:
其他好文 时间:
2021-06-21 20:25:34
阅读次数:
0
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:
其他好文 时间:
2021-06-21 19:59:39
阅读次数:
0
在页面中植入下列代码,即可防止页面加载及跳转 <script type="text/javascript"> if (window.stop) window.stop(); else document.execCommand("Stop"); </script> ...
分类:
Web程序 时间:
2021-06-21 19:54:58
阅读次数:
0
说明 工具类,提供了许多静态方法,用于操作集合。 模块:java.util.Collections 方法:全是static方法,使用时直接Collections.xxx( ... ) 返回值类型 方法 说明 boolean addAll(Collection< ? super T >c, T... ...
分类:
编程语言 时间:
2021-06-20 18:43:07
阅读次数:
0
闲话不多说,直接上代码。 1 import numpy as np 2 from sympy import * 3 4 # 定义一个求差商表的函数,使用递归求解差商表,返回值是差商的值 5 # x是数组,表示样本点的x 6 # f是数组,表示样本点的函数值f(x) 7 # start是int类型,表 ...
分类:
编程语言 时间:
2021-06-20 18:23:32
阅读次数:
0
数据库中的字段public class User{ private int id; private String name; private String password; }测试查出来password为null//select id,name,pwd from mybatis.user wher ...
分类:
其他好文 时间:
2021-06-20 18:22:57
阅读次数:
0