摘要:
【Android无法访问本地服务器(localhost/127.0.0.1)的解决方案】 在Android开发中通过localhost或127.0.0.1访问本地服务器时,会报Java.NET.ConnectException: localhost/127.0.0.1:8083 -Connectio 阅读全文
摘要:
【Android 添加网络权限】 <uses-permission Android:name="android.permission.INTERNET"></uses-permission> 参考:http://blog.csdn.net/leilu2008/article/details/5861 阅读全文
摘要:
【Java 匿名内部类】 参考:http://www.cnblogs.com/nerxious/archive/2013/01/25/2876489.html 阅读全文
摘要:
【VSC KeyNote】 1、前后跳转。 Alt + LeftArrow, Alt + RightArrow 2、缩进问题。 vsc默认缩进为4,但js代码里缩进依旧是2。 因为vscode默认启用了根据文件类型自动设置tabsize的选项,在设置中添加: 即可解决。 阅读全文
摘要:
【SQL DEFAULT 约束】 1、create table时创建default约束。 2、alter table时创建default约束。 3、撤销default约束 参考:http://www.w3school.com.cn/sql/sql_default.asp 阅读全文
摘要:
【Numeric Type Attributes】 INT(4) specifies an INT with a display width of four digits. This optional display width may be used by applications to disp 阅读全文
摘要:
【MySQL driver for Node】 1、安装 2、一个示例 From this example, you can learn the following: Every method you invoke on a connection is queued and executed in 阅读全文