2021/5/29

uniapp swiper img 直角

在父元素添加 overflow:hidden

  • uni-app
  • 2021/5/29
  • helei
  • 956
  • 2021/5/27

    m1 mac chrome 带参数启动 mac selenium连接已启动浏览器

    #编辑文件 vi ~/.zshrc #添加下面内容 export PATH="/Applications/Google Chrome.app/Contents/MacOS:$PATH" #命令行运行下面命令 Google\ Chrome --remote-debugging-port=9222 --user-data-dir=&…

  • macos python selenium
  • 2021/5/27
  • helei
  • 1,317
  • 2021/5/26

    python 监听键盘事件

    pynput from pynput.keyboard import Key,Listener def press(key):     print(key)     if key ==Key.space:         do something with Listener(on_press = press) as …

  • python
  • 2021/5/26
  • helei
  • 943
  • 2021/5/26

    python selenium 执行js

    driver.execute_script("your js")

  • selenium
  • 2021/5/26
  • helei
  • 962
  • 2021/5/24

    php获取post参数

    一、PHP获取POST数据的几种方法 方法1、最常见的方法是:$_POST['fieldname']; 说明:只能接收Content-Type: application/x-www-form-urlencoded提交的数据解释:也就是表单POST过来的数据 方法2、file_get…

  • php
  • 2021/5/24
  • helei
  • 974
  • 2021/5/24

    php 获取微信推送的xml

    1 //接收POST数据 2 $input = file_get_contents("php://input"); 3 //提取POST数据为simplexml对象 4 $xml = simplexml_load_string($input); 5 var_…

  • php 微信公众号开发
  • 2021/5/24
  • helei
  • 948
  • 2021/5/21

    nginx 配置80转发443

    rewrite ^ https://$http_host$request_uri? permanent;

  • nginx
  • 2021/5/21
  • helei
  • 949