E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Routes
asp.net core MVC 区域Areas 下 使用 TagHelper asp-area asp-controller asp-action
1)在~/Areas/区域名称/Views目录下新建_ViewImports.cshtml文件2)路由配置信息app.UseMvc(
routes
=>{
routes
.MapRoute(name:"default
qq1326702940
·
2020-08-09 23:38
.net
core
.NET Core 微服务—API网关(Ocelot) 教程 [四]
前言:上一篇介绍了Ocelot网关和认证服务的结合使用,本篇继续介绍Ocelot相关请求聚合和Ocelot限流一、请求聚合Ocelot允许声明聚合路由,这样可以把多个正常的
Routes
打包并映射到一个对象来对客户端的请求进行响应
cwsheng
·
2020-08-09 21:00
多年总结的软性编码规范-前端
commitlint其他:.npmrc、.yarnrc文件名常用文件名(也可用作文件夹名)index.js-入口文件;constants.js-常量;services.js-网络请求;utils.js-工具函数;
routes
.js
zhaolandelong
·
2020-08-09 16:02
前端工程化
ARouter源码解析(四)-- arouter-compiler模块分析(APT流程)
ARoutergithub上的demo项目,编译文成之后在app->build->generated->source->apt->debug->comm.alibaba.android.arouter->
routes
LeoJWJ
·
2020-08-09 15:44
源码分析
spring cloud gateway 负载均衡
配置文件application.ymlspring:application:name:hello-gatewaycloud:consul:host:172.18.0.20port:8500gateway:
routes
o_瓜田李下_o
·
2020-08-09 15:11
spring
cloud
vue 页面缓存问题
1.路由设置
routes
:[{path:'index',component:notice,meta:{keepAlive:true//是否缓存标志}}]主要设置元信息(keepAlive)代表页面需要缓存
just so so
·
2020-08-09 15:07
vue-router的基本使用
VueRouter);varLogin={template:`登录页面`};varRegister={template:`注册页面`};varrouter=newVueRouter({//配置路由对象
routes
2B青年弹棉花
·
2020-08-09 15:53
Vue学习
vue.js
模块化开发中带着参数跳转页面进行回显的描述!
统一页面跳转方法util.goPage=function(type,url,params){switch(type){//配置跳转case0:varjump='';if(params){jump=config.
routes
水手之剑
·
2020-08-09 14:15
vue 全局配置seo(title,关键词,描述)
1.router文件夹下index.js中设置titleexportdefaultnewRouter({
routes
:[{path:'/',name:'Home',component:Home,meta
weixin_34221276
·
2020-08-09 14:12
vue单页面应用根据路由动态修改title
1、通过全局前置守卫beforeEachconstrouter=newRouter({
routes
:[{path:'/',name:'home',component:Home,meta:{title:'
weixin_33739541
·
2020-08-09 14:44
如何用vue-router为每个路由配置各自的title
constvueRouter=newRouter({
routes
,mode:'hist
weixin_33670786
·
2020-08-09 14:30
vue实现动态改变title
并且在路由发生变化时修改页面titlerouter-index.jsconstrouter=newRouter({mode:'history',
routes
:[{path:'/index',name:'
weixin_30679823
·
2020-08-09 13:53
Controller中利用RedirectToRoute重定向的问题
先看看我们例子用到的路由表
routes
.MapRouteWithName(name:"ProductDetail",url:"{Platform}/Product/{ProductID}",defaults
weixin_30421809
·
2020-08-09 13:40
(六)vue开发 - transition之页面切换过渡动画
页面前进和后退时保持和原生客户端一样的切换效果:1、在路由里设置,meta的index的值,通过index值的大小控制页面跳转层级顺序,如下:首页=>产品=>详情exportdefaultnewRouter({
routes
、不知不觉、
·
2020-08-09 12:14
vue路由--参数获取、dom元素获取、给dom元素添加事件
Vue-router中的对象$route路由信息对象,只读对象$router路由操作对象,只写对象一、参数的获取1、路由对象配置varRouter=newVueRouter({//配置路由规则
routes
couch-potato
·
2020-08-09 12:52
vue
vue路由跳转时更改页面title
一、router文件夹下的index文件中给每个path添加meta:{}:exportdefaultnewRouter({
routes
:[{path:'/',name:'index',component
路不在自己脚下
·
2020-08-09 11:38
vue.js
vue中如何动态改变title中的内容
要想改变title中的内容,需要在路由文件中,加入meta:{titel:‘首页’}exportdefaultnewRouter({
routes
:[{path:‘/’,name:‘i
四季飘雪
·
2020-08-09 11:45
web前端
vue
vue项目开发技巧(require.context)
/router',true,/\.
routes
\.js/可以理解为获取rout
即墨258
·
2020-08-09 11:33
springcloud2+gateway网关配置中心2(包含熔断,jwt认证,限流)
2Jwt拦截器过滤直接配置在规则路由
routes
下面,然后写实现类所写的实体类都是要集成AbstractGatewayFilterFactory网关拦截器工厂接口。
qq_40650378
·
2020-08-09 11:45
cloud
java
vue修改页面的title
routes
:[{path:'/',name:'Entrance',component:Entrance,meta:{title:'首页入口'}}]router.beforeEach((to,from,
liy1wen
·
2020-08-09 11:16
vue
js
前端应用_Vue_vue-router 用router-link代替a 标签,设置默认的路由
登录注册我们想设置默认路由显示指定的组建,可以这么做varrouterObj=newVueRouter({
routes
:[{path:’/’,redirect:’/login’},{path:'/login
上海_彭彭
·
2020-08-09 10:42
Vue.js
arouter实现activity跳转原理
通过apt技术来自动生成代码,代码能将activity对应路径和class添加到路由表中;2.通过扫描获取所有类,遍历自动执行步骤1中所生成地代码,从而路由表中有了对应地数据,路由表的数据结构为Map>
routes
droidDing
·
2020-08-09 10:41
源码
android
组件化
vue编程跳转接口push 转场动画
importVuefrom'vue'importRouterfrom'vue-router'importSingerDetailfrom'components/singer-detail/singer-detail'Vue.use(Router)exportdefaultnewRouter({
routes
lvlemo
·
2020-08-09 09:42
vuejs
vue设置页面title
router/index.jsimportVuefrom'vue';importRouterfrom'vue-router';Vue.use(Router);constrouter=newRouter({
routes
lihefei_coder
·
2020-08-09 09:50
vue
OkHttp 官方中文文档
本文翻译来自官方OkHttpWikiOkHttp官方中文文档一Calls1请求2响应3重写请求4重写响应5后续请求6请求重试7呼叫8调度二Connections1URLsURLs摘要2Addresses3
Routes
4Connections
jackingzheng
·
2020-08-09 08:28
android开发
YII
需要开缓存如何在页面下边显示sql的查询时间在log组件的
routes
中加入array('class'=>'CProfileLogRoute','levels'=>'error,warning',)同时在
iteye_8396
·
2020-08-09 08:19
YII study
需要开缓存如何在页面下边显示sql的查询时间在log组件的
routes
中加入array('class'=>'CProfileLogRoute','levels'=>'error,warning',)同时在
haohappy2
·
2020-08-09 08:04
vue动态添加title,(keywords)关键字和description
vue动态添加title,(keywords)关键字和description首先在router下的index.js设置路由
routes
:[{path:’/home’,component:Home,meta
四季飘雪
·
2020-08-09 05:22
vue
web前端
前端
vue 全局配置seo(title,keywords关键词,description描述)
1.router文件夹下index.js中设置titleexportdefaultnewRouter({
routes
:[{path:'/',name:'Home',component:Home,meta
即墨丹青
·
2020-08-09 05:02
vue
在服务器端用nodejs插入多个数据到数据库
/
routes
/product');varapp=express();app.listen(3000);app.use(express.static('public
魑魅魍魉魃魈
·
2020-08-09 01:21
学习
Rest Web Api Controller 返回JSON格式大小写
publicstaticclassWebApiConfig{publicstaticvoidRegister(HttpConfigurationconfig){config.
Routes
.MapHttpRoute
weixin_30294295
·
2020-08-08 23:51
vue路由跳转时更改页面title
一、router文件夹下的index文件中给每个path添加meta:{}:exportdefaultnewRouter({
routes
:[{path:'/',name:'index',component
web_xyk
·
2020-08-08 23:32
vue
【Vue】判断设备是移动端还是pc端
exportdefaultnewRouter({mode:'history',
routes
:[{path:'',redirect:'/pc_index'},{path:"/pc_index",//pc端首页
Fate
·
2020-08-08 19:07
Vue的开发之路
Vue路由
.net Rest Web Api Controller 返回JSON格式大小写问题解决.
publicstaticclassWebApiConfig{publicstaticvoidRegister(HttpConfigurationconfig){config.
Routes
.MapHttpRoute
走错路的程序员
·
2020-08-08 18:24
浅谈vue-router原理
浅谈vue-router原理…,下面这种路由表的写法比较优雅,我把路由单独写在一个文件
routes
.js.router/
routes
.js文件代码```goconstroutes=[{path:'/',
badboy__biubiubiu
·
2020-08-08 17:11
前端
TypeError: web3.isConnected is not a function的解决方法
/home/yifei/SoftWareShare/
routes
/index.js:16varconnected=web3.isConnected();^TypeError:web3.isConnectedisnotafunction
逸飞777
·
2020-08-08 14:57
以太坊
以太坊
[openstack][keystone]架构分析
首先介绍一下keystone的整体代码框架,就是:Paste+PasteDeploy+
Routes
+WebOb文章整体以ubuntu14.04操作系统为平台,如果为CentOS或其他系统相关文件目录可能会有区别
fancy_kai
·
2020-08-08 13:19
openstack
.net core webaip 配置全局路由并获取 post json 的json数据
1,配置路由在Startup类下的Configure函数下添加app.UseMvc(
routes
=>{
routes
.MapRoute(name:"default",template:"{controller
MeGoodtoo
·
2020-08-08 12:27
.net
core
spring-cloud微服务(4) 网关zuul设置
通过匹配path转到指定服务zuul.
routes
.api-b.path=/zuul-b/**zuul.
routes
.api-b.service-id=service-ribbon现在通过设置网关,访问指定的
周小西zxx
·
2020-08-08 03:02
spirng-cloud
java
Lumen企业站内容管理实战 - 后台管理之认证二
第一步:打开/
routes
/web.php文件,在$router->group()参数中,增加一个:'middleware'=>'auth.admin',middleware的值你可以自己命名,我这里叫做
wangpeng52758
·
2020-08-08 00:57
lumen教程
Vue(四)-路由
路由的使用分为三个步骤:定义路由路径集合varroutes=[{path:‘’,component:},…]新建一个路由对象varrouters=newVueRouter({
routes
})将路由挂载到
sunny_jiangsu
·
2020-08-08 00:49
学习
Vue
router
vue51 —— vue-router --- 全局导航守卫
exportdefault{name:'Home',created(){document.title='首页'}}方法2,导航守卫方式1.在index.js中使用beforeEach()--前置守卫(guard)1.1先在
routes
8笔
·
2020-08-07 21:20
vuejs
vue 全局路由守卫
importVuefrom'vue'importRouterfrom'vue-router'importHelloWorldfrom'@/components/HelloWorld'Vue.use(Router);exportdefaultnewRouter({
routes
实习打字猿
·
2020-08-07 21:21
vue
vue
vue-router 动态路由 未刷新的问题
importVuefrom'vue'importRouterfrom'vue-router'Vue.use(Router)constcreateRouter=()=>newRouter({mode:'history',
routes
梦想比海深
·
2020-08-07 21:46
vue.js
BFD for BGP/Static
Routes
配置指南
BFDforBGP/Static配置指南BFD(BidirectionalForwardingDetection,双向转发检测)协议提供一种轻负载、快速检测两台邻接路由器之间转发路径连通状态的方法。协议邻居通过该方式可以快速检测到转发路径的连通故障,加快启用备份转发路径,提升现有网络性能。对于运营商来说,在边缘路由器与MCE(或客户CE)之间启用BFD协议,可以加快EBGP或静态路由收敛,提升业务
weixin_34248849
·
2020-08-07 20:26
vue中页面跳转拦截器的实现方法
首先对index.js的router进行配置;exportdefaultnewRouter({
routes
:[{path:'/consultancy',name:'consultancy',meta:{
weixin_34019929
·
2020-08-07 20:12
vue element ui 导航刷新 is-active
{{route.name}}js:
routes
:[{path:'/main/kdgadmin',name:'幼儿园管理',},{path:'/main/phyex',name:'体测',},]css:.
weixin_30879169
·
2020-08-07 20:31
vue路由的基本使用
vue-router包之后,在window全局对象中,就有了一个路由的构造函数,VouRouter//在new路由对象时,可以为构造函数传递一个配置对象varrouterObj=newVueRouter({//
routes
你是人间五月天
·
2020-08-07 19:10
vue
vue路由拦截器遇到的坑
后台返回一个token,存在sessionStorage里面,拦截器读取到token就放router.beforeEach((to,from,next)=>{letPcurl=router.options.
routes
singlever
·
2020-08-07 18:24
vue
Vue路由配置和使用
Vue路由配置和使用项目中引入路由模块yarn安装vue-router插件yarnaddvue-router在项目目录中新建’route’文件夹,新建index.js和
routes
.jsroutes文件用于建立建立路由表
三倍速坑爹
·
2020-08-07 17:32
上一页
26
27
28
29
30
31
32
33
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他