淘宝IP地址库接口

$.get('http://ip.taobao.com/service/getIpInfo.php?ip=','json',function(res){
    p=JSON.parse(res);
    p=p.data;
    for(var key in p){
            console.log(key + " -> " + p[key]);
    }
})

js ajax发起跨域请求

常见的错误:

No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://xxx.com' is therefore not allowed access.

禁止跨域请求是浏览器的安全机制的一部分,不能随便绕开。

即便采用axios,本质上仍是XMLHttpRequest,会遇到同样的问题。

在不能触及被请求端的后端的前提下,需要使用代理来启用Access-Control-Allow-Origin

现在有了一种便捷手段:https://bird.ioliu.cn/

https://segmentfault.com/q/1010000007665348

2016年上半年写前端的点滴汇总

其实只做了一件事情:写异步回调函数。

附带的成就是知道了如何调用cdn资源,如何使用bootstrap框架,如何jquery.

Mathjax改造

Mathjax for WordPress插件的开发者认为,$...$标签可能与$货币符号混淆,故用$latex标记公式。

为了通用性和简洁性,我通过插件改造把$latex改回了$,但又兼容已经书写过公式的既有文章。

主要改动是\$latex[= ](.*?[^\\\\])\$改为\$(latex){0,1}[= ](.*?[^\\\\])\$

$latex a^2 $
$ a^2 $

【160118】服务器管理记录

  • 更换系统
    再也无法忍受Windows 2008 Server x86,将其逐出门外为快。

  • ssh初步

ssh [username]@[IP Address]

scp [filename] [username]@[IP Address]:[directory]

  • apache,mysql,php部署





  • 设置默认访问【?】页面

    如图所示,将index.php提前,那么访问该目录时将优先转向此页面。

  • unzip

【160113】PrintService开发记录

第一次发日志,就从【应用过PrintService的】校赛以后说起吧;不折腾不舒服。