摘要: //字符串转base64 function encode(str){ // 对字符串进行编码 var encode = encodeURI(str); // 对编码的字符串转化base64 var base64 = btoa(encode); return base64; } // base64转字 阅读全文
posted @ 2019-08-28 13:41 archerhao 阅读(42515) 评论(0) 推荐(1) 编辑
摘要: 在使用jsonserver模拟接口的时候。 假如写这样的数据: // db.json{ "posts": [ { "id": 1, "name": "json" } ], "comments": [ { "id": 2, "name": "server" } ]}访问的接口是: http://loc 阅读全文
posted @ 2018-12-20 21:40 archerhao 阅读(229) 评论(0) 推荐(0) 编辑