摘要:
npm config set prefix "f:\node"非常棒 解决了我烦恼 阅读全文
摘要:
cd D:\workspace\project//进入工作目录D:\workspace\project>express -e nodejs-demo//使用express命令创建工程,并支持ejscd nodejs-demo && npm install//根据提示,下载依赖包D:\workspac... 阅读全文
摘要:
一 、该模块包含用以 URL 解析的实用函数。 使用require('url')来调用该模块。1、不同的 URL 字符串解析后返回的对象会有一些额外的字段信息,仅当该部分出现在 URL 中才会有。以下是一个 URL 例子:'http://nodeapi.ucdok.com/api/url.html'... 阅读全文
摘要:
1、在官网下载 https://nodejs.org/en/ msi文件安装2、在去安装git3、安装nmp package管理工具4、安装express npm install express -g5、安装调试工具 supervisor6、安装了notepad 写脚本。 阅读全文
摘要:
直接上关键代码:publicclassRegisterModel{[Required(ErrorMessage="*邮箱地址不能为空")][DataType(DataType.EmailAddress)][RegularExpression(@"^\w+((-\w+)|(\.\w+))*\@[A-Z... 阅读全文
摘要:
using Mvclogin.Models;using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Data.Entity;n... 阅读全文
摘要:
http://www.cnblogs.com/xlhblogs/p/3349972.html今天面试问到了mvc的过滤器 。actionreslut的类型操作结果 帮助器方法 描述 ViewResult View 将视图呈现为网页。 PartialViewResult PartialView 呈现分... 阅读全文
摘要:
create function dbo.fun(@inputid as varchar(40))returns intasbegindeclare @counts intselect @counts=COUNT(*) from Stu_Inforreturn @countsenddeclare @i... 阅读全文