查询到最新的12条

requireJS知识点

data-main属性: <script src="script/require.js" data-main="script/app.js"></script> 这里指定了根是app.js,只有直接或间接与app.js有关的依赖关系的模块才会被插入到html中。   require.config() 配置 其参数为一个配置对象,配置项及含义如下:   bas 继续阅读

require加载器实现原理的深入理解

前言 我们常说node并不是一门新的编程语言,他只是javascript的运行时,运行时你可以简单地理解为运行javascript的环境。在大多数情况下我们会在浏览器中去运行javascript,有了node的出现,我们可以在node中去运行javascript,这意味着哪里安装了node或者浏览器,我们就可以在哪里运行javascript。 1.node模块化的实现 node中是自带模块化机制的,每个文件就是一个单独的模块,并且它遵循的是Common 继续阅读

Laravel5.4安装passport时遇到的一些问题

安装时可能不支持高版本,我使用了composer require laravel/passport ~4.0安装后执行迁移时nothing to migrate,需要手动注册Provider, 在config/app.php中providers中添加Laravel\Passport\PassportServiceProvider::class。执行php artisan passport:install时提示“There are no commands defined in the &#82 继续阅读

express和nodemon简单讲解

1.什么是API: 2.express 介绍: 3.express 使用:  3.1下载安装: 1.初始化项目:   2. 安装express:    3.引入express: //引入express const express = require('express'); // 引入cors 处理跨域模块 const cors = r 继续阅读

nodemon的使用

const express = require("express")//引入express const app = express()//获取服务器实例(对象)app.get("/", (req, res) => {res.send("这是路由!!!") }) //启动服务器 app.listen(3000, () => {console.log("服务器启动" 继续阅读

Attribution

Maps that use Mapbox map designs, data or software usually must display the Mapbox logo and text attribution. This guide explains when, why, and how you are required to add these forms of attribution, and any exceptions. 使用 Mapbox 地图设计、数据或软件的地图通常必须显 继续阅读

layUI 自定义验证

<div id = 'layui-form'><div class="layui-form-item"><label class="layui-form-label layui-form-required">计划内容1:</label><div class="layui-input-inline&#3 继续阅读

Windows服务与网络端口

转:https://support.microsoft.com/zh-cn/help/832017/service-overview-and-network-port-requirements-for-windows   Windows 的服务概述和网络端口要求 适用于: Windows Server version 1803Windows Server Datacenter CoreWindows Server Standard Core 详细 注意&#x 继续阅读

【Powershell】离线安装PowerShell模块

在一些情况下,譬如高安全性网络要求下或访问受限情况下,无法直接访问Internet,此时该如何安装Powershell Module呢?以下以安装Msonline模块为例。 PC1: 可以正常上网 PC2: 无法正常上网 在PC1上执行更新安装nuget (以下命令会更新到最新版本) Install-PackageProvider -Name NuGet -RequiredVer 继续阅读