{ "$schema": "https://aka.ms/terminal-profiles-schema", "alwaysShowTabs" : true, "defaultProfile" : "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", "initial ...
前面有对xpc进行一些学习了解,这篇主要是记录下xpc的创建以及使用过程。 ###一、创建xpc target 新建project-->targets,左下角点?搜索xpc,点击next添加即可,设定xpc bundle 名称,后面需要bind 连接。 ###二、代码实现 添加完xpc之后,项目内会 ...
分类:
其他好文 时间:
2020-07-21 21:39:09
阅读次数:
53
1. v-cloak 可以解决插值表达式闪烁的问题 {{ msg }} v-text 默认是没有闪烁问题的, v-text="mag" , 但是会覆盖 它中间的内容 v-html 可以把标签 输出到页面是 标签 2. v-bind : 是vue中提供的用于绑定属性的变量 v-bind:title ( ...
分类:
其他好文 时间:
2020-07-21 09:38:21
阅读次数:
68
RecyclerView应该是ListView的增强版。 RecyclerView与ListView的区别(我认为的): RecyclerView的性能比ListView高 RecyclerView支持水平滚动 RecyclerView可以动态增加数据量 需要注意的地方: 在AS里面使用Recycl ...
分类:
移动开发 时间:
2020-07-21 01:09:55
阅读次数:
121
{"msg":"Could not marshal [ResultVo [code=100, result=null, message=ok, exception=null, data=null]]: null; nested exception is javax.xml.bind.MarshalException\n - with linked exception:\n[com.sun.istack.SAXException2: unable to marshal type \"com.domain.ResultVo\" as an element because it is missing an @XmlRootElement annotation]","errorcode":2}
分类:
其他好文 时间:
2020-07-20 11:05:43
阅读次数:
87
这三个属性非常强大,vue,react等一些框架的内部结构,使用他们改变this的指向。 我先说这三个属性的区别,在用代码详细解释。 call:改变this指向,函数执行 , 参数写在参数写在第二位开始的参数部分,this指向第一个参数 apply:改变this指向,函数执行,参数写在第二位的数组中 ...
分类:
移动开发 时间:
2020-07-19 23:21:04
阅读次数:
79
问题原因: 高版本的JDK中不包含javax.xml.bind包了! 解决方法: 1,如果是maven管理依赖,则在pom.xml中加入: <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> ...
分类:
编程语言 时间:
2020-07-19 18:01:33
阅读次数:
144
不少人在vue的开发中遇到这样一个问题: img的src属性绑定url变量,然而图片加载失败。 大部分的情况中,是开发者使用了错误的写法,例如: <img src="{{ imgUrl }}"/> 这样写肯定是不对的,正确的写法应该使用v-bind: <img v-bind:src="imgUrl" ...
分类:
其他好文 时间:
2020-07-18 22:44:17
阅读次数:
96
""" /etc/python3 @File : IO_HTTP.py @Time : 2020/7/18 下午3:26 @Author : wangyongqi @Email : 92644827@qq.com @SOftware : PyCharm """ from socket import ...
分类:
编程语言 时间:
2020-07-18 22:38:02
阅读次数:
118
<el-form :model="form" :rules="rules"> <el-form-item prop="input"> <el-input v-model="form.input"></el-input> </el-form-item> </el-form> 如上面的代码 1、标签绑定 ...
分类:
其他好文 时间:
2020-07-18 22:30:34
阅读次数:
124