在使用SOAP调用ASMX文件做接口开发的时候,有些接口偶尔会报错,但是一直找不到原因. 错误提示如下: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://www.test.com.cn/test/test.asmx?wsdl' : failed to load external entity 重点
Jquery 判断checkbox是否选中,设置选中的方法
使用Jquery判断checkbox的选中方法. 页面代码: <!DOCTYPE html> <html> <head> <title></title> <script src="./jquery-1.10.2.min.js"></script> </head> <body> <input type="checkbox" name="parent" />选择 <ul> <li><input type="checkbox" name="child[]"/></li> <li><input type="checkbox" name="child[]"/></li> <li><input type="checkbox" name="child[]"/></li> </ul> <script> $(function(){ $('input[name=parent]').click(function(){ var checked = $(this).prop('checked'); if ($(this).is(":checked")) { alert(333);
PHP使用openssl_encrypt()函数实现des加密(续)
之前有一篇博客有提到,使用openssl_encrypt(),openssl_decrypt()来实现des加解密。 PHP对Json数据的处
Mysql 重命名表
Mysql对表进行重命名 rename table old_name to new_name 妥妥的的
Centos 新增了Svn用户,重启报错No access allowed to this repository
新增了代码版本库,重启svn,但是检出代码的时候报错 No access allowed to this repository 修改svn仓库里面 conf/svnserve.conf # password-db = passwd 注释去掉,切记空格也要去掉 再次重启 killall svnserve svnserve -d -r /home/test/svn ok