1. 创建项目, 并同时生成路由文件 2. 创建组件xxx 3. 配置路由, 并在routing文件中导入组件xxx const routes: Routes = [ {path: 'xxx', component: XxxComponent} ]; 4. 在使用的地方用 routerLink <a ...
分类:
其他好文 时间:
2020-07-02 16:44:20
阅读次数:
52
1. 创建模块 ng g module aaa/bbb (会在src/app/aaa下创建bbb模块) ng g module aaa/bbb --routing (创建带路由的模块) 2. 外部模块要访问自定义模块中的组件, 自定义模块需要向外暴露 在module文件中配置 exports: [ ...
分类:
其他好文 时间:
2020-07-02 16:06:26
阅读次数:
52
第一个小程序 <template> <div id="app"> <div>hello world!</div> <router-view></router-view> </div> </template> <script> export default { name: 'App' } </scri ...
分类:
其他好文 时间:
2020-07-01 14:21:10
阅读次数:
182
板子端:ifconfig usb0 192.168.224.101route add default gw 192.168.224.100 #设置默认网关ubuntu端 #eth1为对应板子的网卡 eth0为本地上网的网卡sudo sysctl -w net.ipv4.ip_forward=1sud ...
分类:
移动开发 时间:
2020-07-01 09:16:34
阅读次数:
83
(一)查看副本集状态要查看副本集状态及每个成员的状态,可以连接到主节点,使用 rs.status() 命令查看: rstest:PRIMARY> rs.status() { "set" : "rstest", "date" : ISODate("2020-06-30T15:06:44.586Z"), ...
分类:
数据库 时间:
2020-06-30 21:00:28
阅读次数:
79
Flask六行代码运行 # 六行启动Flask 提供HelloWorld from flask import Flask # 导入Flask 类创建Flask应用对象 app = Flask(__name__) # app = application @app.route("/index") # 为 ...
分类:
其他好文 时间:
2020-06-30 20:57:42
阅读次数:
58
angular中路由跳转并传值四种方式 https://www.cnblogs.com/yangxuanxuan/p/11104263.html angular2中router路由跳转navigate的使用与刷新页面问题详解 https://www.jb51.net/article/113142.h ...
分类:
其他好文 时间:
2020-06-30 12:43:56
阅读次数:
54
#vi /etc/keepalived/keepalived.conf RouteA(backup):192.168.224.6RouteB(backup):192.168.224.221RouteC(master):192.168.224.220VIP: 192.168.224.4RouteA配置 ...
分类:
其他好文 时间:
2020-06-29 00:50:10
阅读次数:
79
feign: httpclient: # feign最大连接数 max-connections: 200 # feign单个路径的最大连接数 max-connections-per-route: 50 okhttp: # 让feign使用Apache okhttp做请求,而不是默认的urlConne ...
分类:
编程语言 时间:
2020-06-28 09:39:14
阅读次数:
81
1.app.py from flask import Flask,render_template import sqlite3 app = Flask(__name__) @app.route('/') def index(): return render_template("index.html" ...
分类:
Web程序 时间:
2020-06-27 19:57:27
阅读次数:
71