码迷,mamicode.com
首页 >  
搜索关键字:cti    ( 37597个结果
为什么我的跨域 AJAX 发了两个请求?
为什么我的跨域 AJAX 发了两个请求? 转载自:http://todoit.me/ajax-preflight/ 最近在做一个 VUE 的项目的时候, 和后端的小伙伴对接口, 想方便开发, 于是要求后端的小伙伴在所有的接口都加上跨域的许可 (Access-Control-Allow-Origin) ...
分类:Web程序   时间:2017-05-17 18:22:42    阅读次数:287
c#中如何获取本机MAC地址、IP地址、硬盘ID、CPU序列号等系统信息
public class Computer { public static string CpuID; //1.cpu序列号 public static string MacAddress; //2.mac序列号 public static string DiskID; //3.硬盘id publi... ...
分类:Windows程序   时间:2017-05-17 18:21:30    阅读次数:203
PDO
PDO(php date object) 支持事物(innodb BDB) 储存过程 数据库编程接口(操作不同数据库) 错误处理 预处理 <?php <! 事物 !>//数据源$dsn = 'mysql:host=localhost; dbname=sankea';//用户名$username = ...
分类:其他好文   时间:2017-05-17 18:19:58    阅读次数:132
Js判断是移动端还是pc端
var browser={ versions:function(){ var u = navigator.userAgent, app = navigator.appVersion; return {//移动终端浏览器版本信息 trident: u.indexOf('Trident') > -1,  ...
分类:移动开发   时间:2017-05-17 17:27:24    阅读次数:266
debian8安装谷歌浏览器
第一步:下载: wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb //32位 wget https://dl.google.com/linux/direct/google-chrome-stab ...
分类:其他好文   时间:2017-05-17 17:22:08    阅读次数:174
java正则表达式
\\( 表示转译 ( 其实正则表达式其实就相当于写if else 判断 把所有的卡头中间,所有的情况都写进入 个人感觉正则表达式写的好不好,完全在于对匹配的内容的认识是否全面。 ...
分类:编程语言   时间:2017-05-17 17:15:51    阅读次数:168
Confluence 安装部署
Confluence安装与部署 下载安装包及破解包 安装包下载地址:https://www.atlassian.com/software/confluence/download-archives 破解包下载地址:http://down.51cto.com/data/2236416 atlassian ...
分类:其他好文   时间:2017-05-17 17:15:19    阅读次数:748
排列组合算法
public class Solution{ public List<List<Integer>> permutations(int[] arr){ List<List<Integer>> res = new ArrayList<List<Integer>>(); //corner if ( arr ...
分类:编程语言   时间:2017-05-17 16:06:32    阅读次数:210
http协议发送json字符串请求
package post; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.net ...
分类:Web程序   时间:2017-05-17 16:05:37    阅读次数:904
远程访问Function时报错Remote table-valued function calls are not allowed.
Only table-valued functions can be used in the FROM clause. 解决办法: If it's a scalar function, use this: SELECT * FROM OPENQUERY(LinkedServer, 'SELECT [ ...
分类:其他好文   时间:2017-05-17 13:53:26    阅读次数:116
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!