接着自定义组件,这里是我自定义的一个modal对话框组件。 效果如下图所示: Modal.vue <template> <div class="modal-backdrop" v-if="modalShow"> <div class="modal" > <div class="modal-heade ...
分类:
其他好文 时间:
2021-04-21 12:33:42
阅读次数:
0
Main: public class Main { public static void main(String[] args) { Prizes<String> prizes = new Prizes<>(); prizes.addPrizes("一等奖: 荣耀40S手机 一部"); prizes ...
分类:
编程语言 时间:
2021-04-21 12:33:09
阅读次数:
0
1. 中文 /^[\u4e00-\u9fa5]{2,4}$/ 2. 手机号 /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/ 3. 电子邮箱 /^\w+([-+.]\w+)*@\w+([-.] ...
分类:
其他好文 时间:
2021-04-21 11:53:26
阅读次数:
0
#不要加空格 time1=$(date) echo $time1 > /tmp/output.txt ...
分类:
系统相关 时间:
2021-04-21 11:49:37
阅读次数:
0
输出小于输入值的所有正偶数。 1、while语句 #include <stdio.h> int main(void) { int i = 2, j; puts("please input an integer."); printf("j = "); scanf("%d", &j); while ( ...
分类:
编程语言 时间:
2021-04-20 15:40:50
阅读次数:
0
但是机器学习模型本质上是相关性的学习,大量弱特征的引入在提升模型效果的同时,就会削弱可解释性。 滴滴治理算法探索与实践 原创 网约车技术团队 滴滴技术 2021-04-16 https://mp.weixin.qq.com/s/Kn0NToHvCPvIBvSIIN18cQ ...
分类:
其他好文 时间:
2021-04-20 15:19:17
阅读次数:
0
Switch语句支持String类型。 Try-with-resource语句: 参考博客:try-with-resources语句 try-with-resources语句是一种声明了一种或多种资源的try语句。资源是指在程序用完了之后必须要关闭的对象。try-with-resources语句保证 ...
分类:
编程语言 时间:
2021-04-20 15:10:02
阅读次数:
0
一.选择器 1.基本 名称 用法 描述 #id $("#myDiv"); 根据给定的ID匹配一个元素 element $("div"); 根据给定的元素标签名匹配所有元素 .class $(".myClass"); 根据给定的css类名匹配元素 * $("*") 匹配所有元素 selector1,s ...
分类:
Web程序 时间:
2021-04-20 15:07:11
阅读次数:
0
一、词频统计: 1.读文本文件生成RDD lines lines = sc.textFile('file:///home/hadoop/word.txt') 2.将一行一行的文本分割成单词 words flatmap() words=lines.flatMap(lambda line:line.sp ...
分类:
其他好文 时间:
2021-04-20 15:02:06
阅读次数:
0
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:
数据库 时间:
2021-04-20 14:57:17
阅读次数:
0