C:\WINDOWS\system32>npm install vue-cli -g npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) npm W ...
分类:
其他好文 时间:
2020-07-06 12:56:06
阅读次数:
289
shelljs https://github.com/shelljs/shelljs 实例 var shell = require('shelljs'); if (!shell.which('git')) { shell.echo('Sorry, this script requires git') ...
分类:
Web程序 时间:
2020-07-06 11:12:54
阅读次数:
98
header(location:你的上一页的路径); // 注意这个函数前不能有输出 header(location:.getenv("HTTP_REFERER")); // 返回其调用页面 echo"<script>alert('提交成功!');history.go(-1);</script>"; ...
分类:
Web程序 时间:
2020-07-06 11:12:06
阅读次数:
131
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <script src="http://cdn.bootcss.com/jquery/1.11.2/j ...
分类:
Web程序 时间:
2020-07-06 11:03:01
阅读次数:
109
像程序员一样思考 学习编程目的: 解决现实世界的问题 示例——猜数字游戏 本文将向你演示如何构建下面的小游戏: 猜数字游戏 我刚才随机选定了一个100以内的自然数。看你能否在 10 次以内猜中它。每次我都会告诉你所猜的结果是高了还是低了。 请猜数: 随机生成一个100以内的随机整数 记录玩家当前的轮 ...
分类:
编程语言 时间:
2020-07-06 00:43:34
阅读次数:
125
WebApi前端调用 HTML代码: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-3.2.1.js"></script> </head> <body> <in ...
组件化的基本使用过程 <body> <div id="app"> <my-pnc></my-pnc> </div> </body> <script type="text/javascript"> //1.组件构造器 const cpnc=Vue.extend({ template:` <h3>你好V ...
分类:
其他好文 时间:
2020-07-05 22:54:37
阅读次数:
69
var twoSum = function(nums, target) { var obj = {} var i = 0 var res = [] while (i < nums.length) { if(obj[target - nums[i]] !== undefined) { res.push ...
分类:
Web程序 时间:
2020-07-05 21:34:18
阅读次数:
64
1、图片链接和超链接 <img src="F:\work_html\ch1\img\html.jpg" alt="html图片"> <img src="img\js1.jpg" alt="html图片" alt="html图片" height="50" width="50"> <img src="i ...
分类:
Web程序 时间:
2020-07-05 21:22:17
阅读次数:
70
参考链接:https://www.zhihu.com/question/268486272 1. 在cmd里安装pyintall ; win+R,输入 cmd, pip install pyinstaller 2.在要打包的文件的文件夹上shift+右键,点击“在此处打开powershell窗口” ...
分类:
其他好文 时间:
2020-07-05 21:19:26
阅读次数:
58