标签:style blog http ar color 使用 sp on div
今天要用bootstrap开发一个网页,要使用到JSON,但是JSON的格式不正确,然后在http://www.bejson.com/【Be JSON】中测试了一下JSON。
发现JSON中多了一个换行符,然后在输入库中清掉换行符就得到正确的JSON格式了。在Windows或者是SQL中的换行符都是以\r\n存在的,所有使用
Replace()函数置换就行。在Ascii码中,\n是10,\r是13
Update Table Set Column1=Replare(Column1,char(10),‘‘) Update Table Set Column1=Replare(Column1,char(13),‘‘)
我希望每天都能记录一点点进步
2014-11-30 20:41:44
标签:style blog http ar color 使用 sp on div
原文地址:http://www.cnblogs.com/WEI-CONG/p/4133637.html