#np

vue 自定义指令input表单的数据验证

<template><divclass="check"><h3>{{msg}}</h3><divclass="input"><inputtype="text"v-inputv-focus><span>{{msg1}}</span&...

vue Element验证input提示

<el-form-itemprop="userName"class="userName_color"><b>详细地址<iclass="red">*</i></b><el-inputplaceholder="请填写详细地址"v-model="loginRu...

Input框搜索关键字高亮显示

ruleTitle(text,val){if(!val)returntext;constresult=text.replace(newRegExp(val,"g"),`<spanclass="primary_title">${val}</span>`);returnresult;}//这个是HT...

Input的校验表达式

1、只是不能输入空格<inputtype="text"onkeyup="this.value=this.value.replace(/^+|+$/g,'')">2、不能输入空格及英文状态下的逗号<inputtype="text"onkeyup="this.value=this.value.replac...
代码星球 ·2020-04-07

jenkinsapi出现HTTPConnectionPool Max retires exceeded异常

python项目通过使用jenkinsapi远程控制jenkinsjenkinsapi使用的远程连接方法是requests包,requests包又使用了urllib3,urllib3又引用了httplib。"""urllib3-Thread-safeconnectionpoolingandre-using."""req...

Spring Security笔记:自定义Login/Logout Filter、AuthenticationProvider、AuthenticationToken

在前面的学习中,配置文件中的<http>...</http>都是采用的auto-config="true"这种自动配置模式,根据SpringSecurity文档的说明:------------------auto-configAutomaticallyregistersaloginform,BA...

NPlot开源画图类

一.net下的图表控件­­­NPlot的基本用法NPlot的基本用法  图表控件一直是很难找的,特别是免费又强大的。NPlot是一款非常难得的.Net平台下的图表控件,能做各种曲线图,柱状图,饼图,散点图,股票图等,而且它免费又开源,使用起来也非常符合程序员的习惯。唯一的缺点就是文档特别难找,难...
代码星球 ·2020-04-06

导出Excel文件,npoi方式和通过microsoft.visual basic.dll

一:例子截图:二:NPOI截图三:EmployeeListWindow.cs代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem....

使用npm安装一些包失败了的看过来(npm国内镜像介绍)

原文地址http://cnodejs.org/topic/4f9904f9407edba21468f31e这个也是网上搜的,亲自试过,非常好用!镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):1.通过config命令npmconfigsetregistryhttps://...

angularJS1笔记-(18)-$http及用angular实现JSONP跨域访问过程

官网上的解释为:The $http serviceisacoreAngularJSservicethatfacilitatescommunicationwiththeremoteHTTPserversviathebrowser's XMLHttpRequest objectorv...

js同时获取多个同name的input框的值

1<!doctypehtml>2<htmlng-app="a3_4">3<head>4<title>表头排序</title>5<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/...

怎么写一个带 bin 的 npm 包

只需要2步:1.在package.json定义一下:{"name":"my-cli",...,"bin":{"command-name":"./xxx/xxx.js"//对于package.json的相对路径},...} 2.在使用的文件首行写 #!/usr/bin/envnode#!/usr/bi...
代码星球 ·2020-04-06

npm脚本

推荐阅读:阮一峰老师的 npmscripts使用指南在package.json的script里面我们可以写很多npm脚本,下面我来总结一下一些日常遇到的知识点:1.npm_lifecycle_eventnpm提供一个npm_lifecycle_event变量,返回当前正在运行的脚本名称,比如start、dev...
代码星球 ·2020-04-06

npm传参技巧

博主今天遇到一个问题,使用vue-cli-serve,想要用shelljs来执行vue-cli-serve,动态给它传“--portxxxx"但是发现”--port“怎么传都穿不进去,后面查了一下,看了阮老师的介绍,npm参数传”--xxx“的时候,需要这样&...
代码星球 ·2020-04-06

npm_config_

npmscript时会带一些参数变量,例如:"test":"nodescripts/tools/test.js--name=test111"平常我们执行npmrundev,想要获取后面的参数,只能通过console.log(process.argv)打印出来的是这样的['C:\ProgramFiles\nodejs\n...
代码星球 ·2020-04-06
首页上一页...5556575859...下一页尾页