码迷,mamicode.com
首页 >  
搜索关键字:i got it    ( 1592个结果
uniapp报错:vue.runtime.esm.js:619 [Vue warn]: Invalid prop: type check failed for prop "count". Expected Number with value 1, got String with value "1".
这是组件内报错,将Type类型改为[Number, String]即可 props: { count: { type: Number, default: 0 }, } 改为 props: { count: { type: [Number, String], default: 0 }, } ...
分类:移动开发   时间:2020-03-01 10:28:20    阅读次数:168
c++程序—goto
#include<iostream> using namespace std; #include<string> #include<ctime> int main() { //goto语句 cout << "1.xxxxxx" << endl; cout << "2.xxxxxx" << endl; ...
分类:编程语言   时间:2020-02-29 14:42:00    阅读次数:68
微服务迁移记(五):WEB层搭建(3)-简单的权限管理
一、redis搭建 二、WEB层主要依赖包 三、FeignClient通用接口 以上三项,参考《微服务迁移记(五):WEB层搭建(1)》 四、SpringSecurity集成 参考:《微服务迁移记(五):WEB层搭建(2)-SpringSecurity集成》 五、FreeMarker集成 参考:《微 ...
分类:Web程序   时间:2020-02-29 13:17:18    阅读次数:99
20200226补题
B - Game on Paper One not particularly beautiful evening Valera got very bored. To amuse himself a little bit, he found the following game. He took a ...
分类:其他好文   时间:2020-02-27 20:36:17    阅读次数:62
React报错:Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.
React报错: 报错原因List.Item的Item写成了item,小写的i ...
分类:其他好文   时间:2020-02-27 01:15:53    阅读次数:140
Android系统启动-SystemServer上篇
copy from :http://gityuan.com/2016/02/14/android-system-server/ 基于Android 6.0的源码剖析, 分析Android启动过程的system_server进程 /frameworks/base/core/java/com/andro ...
分类:移动开发   时间:2020-02-26 20:31:47    阅读次数:108
如何在DBGrid中能支持多项记录的选择
这份文档来自国外,粗略看了一下,很有用,推荐给大家学习使用。【Question】: How to do multi-selecting records in TDBGrid? When you add [dgMultiSelect] to the Options property of a DBGr ...
分类:数据库   时间:2020-02-26 01:32:59    阅读次数:81
js正则手机号 验证
注意一下 现在手机号第二位是不是 只有3 4 5 7 8这几个数, 如果还有请告诉我,否则这个正则表达式式错误的。 ...
分类:移动开发   时间:2020-02-25 23:53:53    阅读次数:143
2014-hack-lu-oreo 对技巧house of spirit
[TOC] 常规检查 没有开启 RELRO ,意味我们可以修改 got 表地址。 逆向分析 Add 函数 + dword_804A288:存储构造的块地址 + (dword_804A288 + 13):在块地址的 13 字节处写入上一个块的地址 + (dword_804A288 + 25):在块地址 ...
分类:其他好文   时间:2020-02-25 00:02:11    阅读次数:84
go 条件与循环结构
Go 语言条件语句 Go 语言提供了以下几种条件判断语句: 语句描述 if 语句 if 语句 由一个布尔表达式后紧跟一个或多个语句组成。 if...else 语句 if 语句 后可以使用可选的 else 语句, else 语句中的表达式在布尔表达式为 false 时执行。 if 嵌套语句 你可以在  ...
分类:其他好文   时间:2020-02-20 22:12:32    阅读次数:96
1592条   上一页 1 ... 11 12 13 14 15 ... 160 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!