avatar
文章
109
标签
41
分类
12
📝主页
📱作品
📬联系
🧑‍💻关于
👋Harry Blog
搜索
📝主页
📱作品
📬联系
🧑‍💻关于

👋Harry Blog

Axios Form URL Encoded Post
发表于2020-02-15|DevelopmentFrontend|axios
Submit data as application/x-www-form-urlencoded using Axios transformRequest.
axios表单形式提交数据 axios post data by form type
发表于2020-02-15|开发前端|axios
axios post data by form type,axios application/x-www-form-urlencoded request({ // url: '', transformRequest: [function(data) { let ret = '' for (let it in data) { ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&' } return ret }], headers: { 'Content-Type': 'application/x-www-form-u...
Git Reset as Fresh Repository
发表于2020-01-01|DevelopmentTools|git
Orphan branch technique to rewrite repository history from scratch.
git重置成新仓库 git reset to new repository
发表于2020-01-01|开发工具|git
git重置成新仓库 git reset to new repository git checkout –orphan latest_branch git add -A git commit -am “commit message” git branch -D master git branch -m master git push -f origin master one line: git checkout –orphan latest_branch && git add -A && git commit -am “commit message” && git branch -D master && git branch -m master && git push -f origin master
wechat ban domain check
发表于2019-08-15|Development|PHP
wechat ban domain check! $domain = 'https://baidu.com';$domain = urlencode($domain);$wxCheckUrl = 'https://weixin110.qq.com/cgi-bin/mmspamsupport-bin/newredirectconfirmcgi?main_type=2&evil_type=20&source=2&url=';$wxCheckUrl .= $domain;file_get_contents($wxCheckUrl);file_put_contents(uniqid().'.txt',json_encode($res));
wechat ban domain check
发表于2019-08-15|开发前端|PHP
wechat ban domain check! $domain = 'https://baidu.com';$domain = urlencode($domain);$wxCheckUrl = 'https://weixin110.qq.com/cgi-bin/mmspamsupport-bin/newredirectconfirmcgi?main_type=2&evil_type=20&source=2&url=';$wxCheckUrl .= $domain;file_get_contents($wxCheckUrl);file_put_contents(uniqid().'.txt',json_encode($res));
Axios CORS Preflight Extra OPTIONS
发表于2019-08-03|DevelopmentFrontend|axios
Why a custom header like X-Token triggers a CORS preflight OPTIONS request.
1…121314…16
avatar
Harry
文章
109
标签
41
分类
12
关于
最新文章
comfyui通过Api请求报错,通过comfyui界面执行正常2025-04-18
ComfyUI workflow fails via API but succeeds in UI2025-04-18
Edit Video Duration Metadata2025-03-16
修改视频元信息时长 duration修改2025-03-16
comfyui gemeni apikey 配置2025-03-15
分类
  • Development50
    • Backend29
      • Database2
    • Frontend19
    • Tools1
  • Note3
  • 开发53
    • 前端21
    • 后端31
      • 数据库3
    • 工具1
  • 随笔3
标签
字体 java video mysql uniapp struct Vue.js jar PHP go wechat 进程/线程 MQTT electron MySQL font canvas emoji php javascript 视频 apicloud vcard comfyui 绘图 ComfyUI vue nginx Go mqtt axios git windows html Nginx ApiCloud payment python concurrency JS
归档
  • 四月 2025 2
  • 三月 2025 3
  • 十月 2024 2
  • 五月 2024 6
  • 五月 2023 2
  • 四月 2023 8
  • 三月 2023 4
  • 十一月 2022 6
© 2017 - 2025 By Harry
搜索
数据加载中