随笔分类 - MVC
摘要:官网地址:http://sass.bootcss.com/ Sass(Syntactically Awesome Stylesheets) Sass 是成熟、稳定、强大的 CSS 扩展语言。 特征 兼容 CSS 语法 Sass 完全兼容个版本的 CSS 语法。我们对语法兼容严格把控,你可以放心的使用
阅读全文
摘要:原文链接:How to Use Sass and Styled Components in a React JS Application
阅读全文
摘要:原文链接:Let’s build a full stack MongoDB, React, Node and Express (MERN) app github源码地址:jelorivera08/react_fullstack from being a Front End Developer to
阅读全文
摘要:原文链接:Using React in Visual Studio Code 原文链接:Live edit and debug your React apps directly from VS Code — without leaving the editor github源码示例:microsof
阅读全文
摘要:原文连接 历史 React是一个用于构建Web应用程序UI组件的JavaScript库。 React由Facebook维护,许多领先的科技品牌在其开发环境中使用React。 React被Facebook,Uber,Netflix,Twitter,Udemy,Paypal,Reddit,Tumblr,
阅读全文
摘要:1.以管理员身份运行vs命令提示符 2.运行 fuslogvw 3.以管理员身份运行Powershell To Enable:(确保fusion日志的文件夹D:\FusionLog\的存在) To Disable 类似,注册表设置: 目的,实现功能: Fusion Log How to enable
阅读全文
摘要:原文 So...you're seeing a FileNotFoundException, FileLoadException, BadImageFormatException or you suspect an assembly loading failure? Try the steps be
阅读全文
摘要:原文链接 Could you be missing the loaded assembly from your configuration file? Ensure you have something similar to the following within your web.config.
阅读全文
摘要:原文链接 This article discusses ways to avoid problems of type identity that can lead to InvalidCastException, MissingMethodException, and other errors. T
阅读全文
摘要:error info: 解决方案:在.exe.config文件中配置Newtonsoft.Json所用版本 原因:Newtonsoft.Json所引用的版本不统一 .net framework中dependentassembly的介绍 .net framework中assemblyIdentity的
阅读全文
摘要:介绍: 所有有关本地化的数据获取,都是从统一的一个资源文件中获取 1.创建虚拟类、资源文件,用于作为本地化数据的获取源 2.Configure localization:支持view、data annotation、mvc 3.Localization middleware: 默认排序为 可以更改顺
阅读全文
摘要:官网文档 nuget地址 创建资源文件 添加资源文件 实施策略 配置本地化 本地化中间件 使用 视图本地化 DataAnnotations 本地化 Make the app's content localizable
阅读全文
摘要:How to: Customize Data Field Validation in the Data Model Using Custom Attributes ValidationAttribute Class The System.ComponentModel.DataAnnotations
阅读全文
摘要:Tag Helpers in ASP.NET Core Tag Helpers in forms in ASP.NET Core HTML Form element ASP.NET Core built-in Tag Helpers Anchor Tag Helper Cache Tag Helpe
阅读全文
摘要:5 Ways to Build Routing in ASP.NET Core Bundling in .NET Core MVC Applications with BundlerMinifier.Core Bundling and minification:微软文档 Bundling and M
阅读全文
摘要:1.项目生成xml 2.添加链接文件,并将属性设值为始终复制 3.添加swagger引用:Swashbuckle.AspNetCore 4.startup.cs配置swargger的xml来源: ConfigureServices方法添加: services.AddMvc(); services.A
阅读全文
摘要:HTTP 协议有一个缺陷:通信只能由客户端发起,做不到服务器主动向客户端推送信息。 这种单向请求的特点,注定了如果服务器有连续的状态变化,客户端要获知就非常麻烦。我们只能使用"轮询":每隔一段时候,就发出一个询问,了解服务器有没有新的信息。最典型的场景就是聊天室。 轮询的效率低,非常浪费资源(因为必
阅读全文
摘要:In order to continue our effort of being modular and well factored we don’t just provide the entire .NET Core platform as a single NuGet package. Inst
阅读全文