随笔分类 - Vue.js
摘要:周未了,又来博客园写随笔,分享程序方法,技巧,经验,把平常时常用的开发框架,语言,脚本集中总结。前段时写了些上传文件,如图片,二进制存储,后来又把上传的二进制经管理实现转存为原文件,图片缩略图等。今天把转换为文件,在网页呈现出来。决定使用ASP.NET MVC,Angularjs,vue,代码可直接
阅读全文
摘要:以前写随笔,均是一篇一篇来分享,这篇现算是集结。在MVC,angularjs,Vue.js或者Javascript显示用户上传的图片。本月份以来,Insus.NET有写过,C# mvc +axios + web api + javascript https://www.cnblogs.com/ins
阅读全文
摘要:一整天,分享了几条随笔, C# mvc +axios + web api + javascript https://www.cnblogs.com/insus/p/18577591 asp.net mvc视图传递数据至另一页的视图 https://www.cnblogs.com/insus/p/18
阅读全文
摘要:如下面这样的存储过程: 以上这个存储过程,给逻辑层或是前端提供3个数据集。 这时候,Insus.NET会分2种情形来实现,1是asp.net mvc。另外一种是给web接口,前端angularjs或者是vue.js应用的。 先来说说提供给asp.net mvc的。 各个数据集,应该给它一个key,不
阅读全文
摘要:一个功能,需要在不同项目实去呈现。 每种语言,所使用语法也将不尽相同,但是大多数是大同小异。 asp.net mvc Razor: angularjs: vue.js:
阅读全文
摘要:最近有在asp.net mvc项目中使用了vue.js。其中一个页面包含诸多个vue的子件Vue Components。 页面运行时,提示: 提示 vue子件找不到。 实则是: The page you are requesting cannot be served because of the e
阅读全文
摘要:帐号,密码,邮箱和移动手机号码正则: acc_regex: /^[a-zA-Z0-9_-]{4,16}$/, pwd_regex: /^.*(?=.{6,})(?=.*\d)(?=.*[A-Z])(?=.*[a-z])(?=.*[!@#$%^&*? ]).*$/, email_regex: /^([
阅读全文
摘要:vue.js,Insus.NET只想获取路径名,截去主机名和网址后的参数: 如下: 简单的方法,可以使用下面代码: window.location.pathname Source Code
阅读全文
摘要:引入 <script src="../Scripts/vue-router.js"></script> this.$route.query.info_nbr undefined || this.$route.query.info_nbr null || this.$route.query.info_
阅读全文
摘要:代码样例: code: let url = '/api/xxx/yyy'; let paramObj = JSON.stringify( { } ); axios .post(url, paramObj, { headers: { 'Content-Type': 'application/json;
阅读全文
摘要:代码样例: html code:
阅读全文
摘要:创建vue组件: 其中组件样式中,有一个属性scoped: 前端html网页: js code: 运行效果:
阅读全文
摘要:本篇中,Insus.NET创建一个vue单文件组件,然后在普通的html网站中去引用这个组件。 把下面代码,存储为一个名为httpVueLoader.js。 (function umd(root, factory) { if (typeof module 'object' && typeof exp
阅读全文
摘要:[Vue warn]: Error compiling template: Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-el
阅读全文
摘要:给vue组件传递对象或是数组,参考下面语法: props: { prop_object: { type: Object, default: () => ({}) }, prop_array: { type: Array, default: () => [] } } Source Code
阅读全文
摘要:显示文本摘要,截取文本指定长度: 应用: 代码: filters: { truncate: function (text, length, suffix) { if (text != undefined && text != null && text.length > length) { retur
阅读全文
摘要:在vue.js中,获取当前页面的URL: var url = window.location.href; // Returns full URL (http://localhost:13336/Sites/newslist.html?t=c&tv=1) var pathname = window.l
阅读全文
摘要:angularjs: vue:
阅读全文
摘要:netget下载Moment.js 在需要格式化日期的页面引用: 在Vue内,添加一个自定义函数,如: 然后在html应用此函数:
阅读全文