我们知道一个网址 自己的网址, 不同页面也有自己id网址, 我们经常会做一些, 把网址送入到后台。 但是后台再处理的 不认识比如 换行啊 等特殊符号的 ? var url = “http://www.itast.cn?name=cz” 所以我们要实现编码,然后再传到后台。 encodeURIComp ...
分类:
其他好文 时间:
2019-12-25 17:42:10
阅读次数:
65
将一个带格式的字符串转换成一个正常的字符串。仔细观察 ,是要用到字符串的repeat方法,中括号前的数字为重复次数,括号内的数据需要再次转译成正常字符串。 javascript var numberMap = new Array(10).fill(0).reduce((obj, el, index) ...
分类:
其他好文 时间:
2019-12-24 10:17:52
阅读次数:
84
(1)运行后报错:“TypeError: cannot use a string pattern on a bytes-like” 原因:content用decode(‘utf-8’)进行解码,由bytes变成string。py3的urlopen返回的不是string是bytes。 解决方案:把’c ...
分类:
编程语言 时间:
2019-12-22 20:06:47
阅读次数:
135
Description A message containing letters from A-Z is being encoded to numbers using the following mapping way: 'A' -> 1 'B' -> 2 ... 'Z' -> 26 Beyond ...
分类:
其他好文 时间:
2019-12-21 22:41:47
阅读次数:
103
Description Description A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' -> 1 'B' -> 2 ... 'Z' -> 26 ...
分类:
其他好文 时间:
2019-12-21 22:40:11
阅读次数:
101
import pandas as pd 在使用pandas时报Could not import the lzma module解决方法: 1、安装了 backports.lzma pip3 install backports.lzma 2、把lzma.py第27行左右的代码改为如下: Users/a ...
分类:
编程语言 时间:
2019-12-21 17:05:49
阅读次数:
551
Description Given an expression s contains numbers, letters and brackets. Number represents the number of repetitions inside the brackets(can be a str ...
分类:
其他好文 时间:
2019-12-21 15:21:13
阅读次数:
81
SyntaxError: invalid syntax是非法语句的意思,检查语法是否出现错误,漏写等 SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \U ...
分类:
其他好文 时间:
2019-12-21 13:24:09
阅读次数:
93
数组转JSON PHP json_encode() 用于对变量进行 JSON 编码,该函数如果执行成功返回 JSON 数据,否则返回 FALSE 。 JSON转数组 PHP json_decode() 函数用于对 JSON 格式的字符串进行解码,并转换为 PHP 变量。 因为json_decode( ...
分类:
编程语言 时间:
2019-12-19 16:16:45
阅读次数:
98
unicode转中文时可以使用json_decode()函数实现。 中文转unicode时需要对字符串转换成UCS-4编码,再转成16进制,再从16进制转换成10进制加上&#前缀来实现中文转unicode编码。 一、unicode转中文 二、中文转unicode ...
分类:
Web程序 时间:
2019-12-19 12:41:02
阅读次数:
102