我将一个电子邮件地址发送到我的nodejs服务器(我只是在短时间内学习它),但我发现@已被替换。我怎样才能得到我的回复?例如,我发布
1@1.com
但我得到
1%401.com
在我的服务器上。
答案 0 :(得分:1)
传递remote: warning: File examples/test/data/-deployd.0 is 64.00 MB; this is larger than GitHub's recommended maximum file size of 50.00 MB
remote: warning: File examples/users/data/-deployd.0 is 64.00 MB; this is larger than GitHub's recommended maximum file size of 50.00 MB
remote: error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.github.com.
remote: error: Trace: d4c72f75677cd04f1c50b4e7847aa61f
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File examples/users/data/-deployd.1 is 128.00 MB; this exceeds GitHub's file size limit of 100.00 MB
To https://github.com/H-Ingram/FindVolunteerships.com.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://github.com/H-Ingram/FindVolunteerships.com.git'
decodeURIComponent
根据事物的外观,您的数据将被编码为URI。 decodeURIComponent('1%401.com') // 1@1.com
解码URI编码参数