码迷,mamicode.com
首页 >  
搜索关键字:route add    ( 40374个结果
注解与main方法
EnableAutoConfiguration This class-level annotation tells Spring Boot to “guess” how you want to configure Spring, based on the jar dependencies that ...
分类:其他好文   时间:2021-06-04 19:47:18    阅读次数:0
c++ 可变参数的打包到tuple,使用tuple传递参数
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:编程语言   时间:2021-06-04 19:35:50    阅读次数:0
【Android】Gradle下载不动,修改为阿里镜像
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:移动开发   时间:2021-06-04 19:09:13    阅读次数:0
vue取值及方法的操作
1.路由传值: 传值:this.$router.push({ path: '/a', query: { id:1, age:18 } }) //如点击时触发 接收:this.$route.query.id || this.$route.query.age 2.父组件找子组件拿值及其方法: 父: im ...
分类:其他好文   时间:2021-06-04 19:08:41    阅读次数:0
Docker部署jar包运行
1.上传jar到服务器的指定目录 2.在该目录下创建Dockerfile 文件 vi Dockerfile 3.编写Dockerfile FROM java:8-jdk MAINTAINER yy ADD map-1.0-SNAPSHOT.jar map.jar EXPOSE 8080 ENTRYP ...
分类:编程语言   时间:2021-06-04 19:02:42    阅读次数:0
win10需要新应用打开此calculator的解决方法
win10运行calc打开计算器提示 需要新应用打开此calculator的解决方法 1、先将所有程序关闭,以管理员身份运行 Windows PowerShell;2、在Windows PowerShell框中键入下面命令:Get-AppXPackage -AllUsers | Foreach {A ...
分类:Windows程序   时间:2021-06-04 19:02:29    阅读次数:0
SQL 向数据库中添加一列
USE [dbo].[MySchool] GO IF COL_LENGTH('Student','Score') IS NULL BEGIN ALTER TABLE Student ADD Score DOUBLE END GO COL_LENGTH判断表中是否含有列,比如此处判断Student表中 ...
分类:数据库   时间:2021-06-03 18:27:49    阅读次数:0
全选反选
<head lang="en"> <meta charset="UTF-8"> <title></title> <style> * { padding: 0; margin: 0; } .wrap { width: 300px; margin: 100px auto 0; } table { bor ...
分类:其他好文   时间:2021-06-03 18:19:27    阅读次数:0
linux环境搭建elasticsearch
1 下载解压elasticsearch tar -zxvf elasticsearch-7.6.1-linux-x86_64.tar.gz 2)修改config/elasticsearch.yml vim config/elasticsearch.yml cluster.name: my-appli ...
分类:系统相关   时间:2021-06-03 18:02:47    阅读次数:0
vue封装面包屑的思路
1、打印this.$route 可以发现matched是可以提供面包屑的数据源,根据实际情况进行filter 2、在路由表(路由记录)中添加 meta const routes = [ // 第一级 { path: '/', name: 'Home', component: Home, meta: ...
分类:其他好文   时间:2021-06-02 20:41:11    阅读次数:0
40374条   上一页 1 ... 13 14 15 16 17 ... 4038 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!