会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
York
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
17
18
19
20
21
22
23
24
25
26
下一页
2017年12月5日
Vue路由
摘要: 1、导出VueRouter 2、全局注册VueRouter插件,在组件中就可以使用this.$router 来访问路由 3、定义路由 4、路由加载前后事件 5、创建和挂载根实例。 // 记得要通过 router 配置参数注入路由, // 从而让整个应用都有路由功能 6、JS 路由功能
阅读全文
posted @ 2017-12-05 15:46 用友U8二次开发
阅读(261)
评论(0)
推荐(0)
2017年11月30日
简单的队列应用
摘要: using Newtonsoft.Json; using System; using System.Collections.Concurrent; using System.Diagnostics; using System.IO; using System.Threading; using System.Web; namespace TestQuenu { /// /// ...
阅读全文
posted @ 2017-11-30 17:19 用友U8二次开发
阅读(559)
评论(0)
推荐(0)
2017年11月28日
Uncaught SyntaxError: Unexpected token )
摘要: href属性值“javascript:void()”,括号中没有加“0”
阅读全文
posted @ 2017-11-28 11:19 用友U8二次开发
阅读(326)
评论(0)
推荐(0)
视频转码
摘要: /// /// 转换成MP4格式 /// /// /// public static string ToMp4(string fromFilePath) { string ffmpeg = HttpContext.Current.Server.MapPath("/") ...
阅读全文
posted @ 2017-11-28 08:52 用友U8二次开发
阅读(437)
评论(0)
推荐(1)
判断是否为视频文件
摘要: private static bool IsVideo(HttpPostedFile file) { bool isVideo = false; string fileName = file.FileName; IList formateList = new List { "...
阅读全文
posted @ 2017-11-28 08:51 用友U8二次开发
阅读(3096)
评论(0)
推荐(0)
2017年11月24日
Press ^C at any time to quit.
摘要: Ctrl+C 退出..............
阅读全文
posted @ 2017-11-24 10:18 用友U8二次开发
阅读(1341)
评论(0)
推荐(0)
2017年11月23日
Node.js中文乱码解决方法
摘要:
阅读全文
posted @ 2017-11-23 15:25 用友U8二次开发
阅读(499)
评论(0)
推荐(0)
Node.js学习
摘要: 简单的说 Node.js 就是运行在服务端的 JavaScript。 Node.js 是一个基于Chrome JavaScript 运行时建立的一个平台。 Node.js是一个事件驱动I/O服务端JavaScript环境,基于Google的V8引擎,V8引擎执行Javascript的速度非常快,性能
阅读全文
posted @ 2017-11-23 14:41 用友U8二次开发
阅读(184)
评论(0)
推荐(0)
2017年11月22日
Asp.net Mvc、webApi配置允许跨域
摘要: Web.config 下<system.webServer> 节点下配置 设置允许跨域传递Cookie 前端 请求的时候需设定:withCredentials = true; 设置了widthCredentials为true的请求中会包含远程域的所有cookie
阅读全文
posted @ 2017-11-22 10:41 用友U8二次开发
阅读(2947)
评论(0)
推荐(1)
2017年11月21日
对称加密、解密
摘要: /// /// 加密 /// public static class Encrypting { #region 使用对称加密、解密 private static string GetEncryptKey() { return ConfigurationManager.AppSettin...
阅读全文
posted @ 2017-11-21 13:21 用友U8二次开发
阅读(660)
评论(0)
推荐(1)
上一页
1
···
17
18
19
20
21
22
23
24
25
26
下一页
公告