摘要: 搞代码搞不通,直接在IIS 、Nginx 添加 IIS HTTP响应标头 添加 Access-Control-Allow-Headers 值 * Access-Control-Allow-Methods 值 OPTIONS,POST,GET Access-Control-Allow-Origin 值 阅读全文
posted @ 2022-10-04 10:42 应世玉 阅读(45) 评论(0) 推荐(0)
摘要: js实现md5加密 function md5(string,bit) { function md5_RotateLeft(lValue, iShiftBits) { return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits)); } f 阅读全文
posted @ 2022-10-04 10:34 应世玉 阅读(3907) 评论(0) 推荐(0)