PuppeteerSharp介绍可以看这篇文章:PuppeteerSharp: 更友好的 Headless Chrome C# API PuppeteerSharp的github地址:https://github.com/hardkoded/puppeteer-sharp 我这边主要是记录一下安装使 ...
分类:
其他好文 时间:
2020-07-02 16:20:28
阅读次数:
109
介绍 一种模式匹配语言,可以使永远筛选数据以查找特定的内容,可以应用在vim、grep、less、perl、python中 基础 .(点) 匹配除 \n 之外的任何单个字符,若要匹配包括 \n ,则应使用 [.\n] [xyz] 匹配所包含的任意一个字符 例如: [abc] 可以匹配“plain”中 ...
分类:
系统相关 时间:
2020-07-02 13:44:46
阅读次数:
91
使用scss 早react webpack.config.js中有对sass文件的解析,只需要安装node-sass就只可以直接使用sass 1 安装node-sass npm i node-sass --save-dev 2 创建scss文件 index.module.scss 3 使用 impo ...
分类:
其他好文 时间:
2020-07-01 12:26:12
阅读次数:
110
const Compare = { LESS_THAN:-1, BIGGER_THAN:1 }; function defaultCompare(a,b){ if(a b){ return 0; } return a < b?Compare.LESS_THAN : Compare.BIGGER_TH ...
分类:
编程语言 时间:
2020-07-01 09:55:40
阅读次数:
104
1.I have not been strong, to be able to fight against all the mistakes I have made. 我还没有刚强到,可以本身来抗全部犯下的错。 2.People who don't love you, you are gentle ...
分类:
其他好文 时间:
2020-07-01 09:39:08
阅读次数:
254
1. typescript 版本 "@types/node": "^12.12.6", 不能用最新的 2. electron的配置里面 background.ts -->> nodeIntegration: true 3.引入antd of vue less-loader 版本 需要 5.0.0 按 ...
分类:
其他好文 时间:
2020-06-30 14:25:56
阅读次数:
133
当我们想showSnackBar的时候,需要通过Scaffold.of(context)得到Scaffold。但是如果这个context用错的话,flutter就会抛出错误。下面我们通过代码仔细看一下。 issue code import 'package:flutter/material.dart ...
分类:
其他好文 时间:
2020-06-29 17:01:38
阅读次数:
63
ERROR Failed to compile with 2 errors 15:32:41 Failed to resolve loader: less-loader You may need to install it. Failed to resolve loader: less-loader ...
分类:
其他好文 时间:
2020-06-29 10:07:38
阅读次数:
57
description Given a positive integer N, return the number of positive integers less than or equal to N that have at least 1 repeated digit. Example In ...
分类:
其他好文 时间:
2020-06-25 14:09:06
阅读次数:
65
import React, { useState, useEffect, useRef } from "react"; import "./swipper.less"; export default function Swipper(props) { const swipperStyle = { h ...
分类:
其他好文 时间:
2020-06-24 21:35:20
阅读次数:
69