// 浅拷贝
let q10Viking = {
name: null,
school: null
}
let hzz = {
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
height: 32px; | |
line-height: 32px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
height: 32px; | |
line-height: 32px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<el-dialog | |
:title="data.title" | |
:width="width" | |
:visible.sync="data.visiable"> | |
<span>测试</span> | |
</el-dialog> | |
</div> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
print("=======================Generate Record Builder========================================") | |
print(" Author D艺: 黄壮壮 ") | |
print("=======================Generate Record Builder========================================") | |
AttributesEp = ''' | |
Integer id, Integer userId, Integer oldCardId, Integer newCardId, String oldGrade, String newGrade, String oldCardName, String newCardName, String gradeCondition, String operate, Timestamp createTime, Timestamp updateTime | |
\n | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.vpu.mp.service.pojo.shop.operation; | |
/** | |
* | |
* @author 黄壮壮 | |
* 积分备注内容消息 | |
*/ | |
public class RemarkScoreMessage { | |
/** | |
* 订单 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.caucoder.nullex; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
/** | |
* 两个map使用 | |
*/ | |
public class StreamMap { |
背景,本地的分支dev-2.7关联着远程的分支dev-v2.7。但是由于项目迭代需求,在远程从dev-v2.7分支拉取了一个新的分支dev-v2.8,新功能在dev-v2.8开发 旧功能维护和修改bug在dev-v2.7分支。
- 在本地创建新的分支
git branch dev-2.8
- 切换到分支dev-2.8
- 需要对一个动态数组对象进行校验,需要用el-form :model 绑定我们要校验的数据 参考链接: jsfiddle net 例子
遇到的主要问题是prop,以及rules的不知道怎么设置issues Error: please transfer a valid prop path to form item!-->解决思路
<el-form-item
v-for="(domain, index) in MainForm.dynamicValidateForm.domains"
:label="'Domain' + index"
:key="domain.key"
:prop="'domains.' + index + '.value'"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.caucoder.nullex; | |
public class NullString { | |
public static void main(String[] args) { | |
String str = null; | |
System.out.println(str); | |
System.out.println(str==null); | |
// ----------------------------- | |
System.out.println(String.valueOf(str)); | |
System.out.println(String.valueOf(str)==null); |