摘要:
开发中常遇到页面向action或service传递url,并通过url传递中文参数问题,尤其是表单提交。而由于表单内容文本的编码是根据浏览器的规则,因此,在传递的时候常出现中文乱码的情况,以下给出解决方案: 在js中将中文信息进行编码如url = encodeURI(url);,此时action或s 阅读全文
摘要:
getdate(lTimeStamp) { // var now = new Date(), var now = new Date(lTimeStamp); let y = now.getFullYear(), m = now.getMonth() + 1, d = now.getDate(); r 阅读全文