region 用于绑定ViewModel部分 public ICommand Command { get { return (ICommand)GetValue(CommandProperty); } set { SetValue(CommandProperty, value); } } // Us ...
先下载路由 1 npm install react-router-dom --save-dev 然后新建两个页面 component1.js 1 import React from 'react'; 2 3 class Component1 extends React.Component{ 4 re ...
分类:
其他好文 时间:
2019-11-13 16:19:14
阅读次数:
65
vue-router 的重定向-redirect 作用可使不同的路径都调回定向的页面 path:'/city', redirect:'/city/allCity',//重新定向输入 /city 依然会跳到/city/allCity ...
分类:
其他好文 时间:
2019-11-12 13:25:11
阅读次数:
95
sessionStorage存取值 1.存值 存一个key为initialize的值,而我把获取到的数据封成对象 例1 sessionStorage.setItem('initialize', JSON.stringify(res.data.data)) 例2 sessionStorage.setI ...
分类:
其他好文 时间:
2019-11-12 12:37:39
阅读次数:
96
1.安装命令: pip install flask 2.使用 1.自己的app from flask import Flask app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello World!' if __na ...
分类:
其他好文 时间:
2019-11-12 00:39:38
阅读次数:
107
这节我们不用@app.route来写路由,而是通过add_url_rule 典型写法 (<int:nid>传递int类型参数,endpoint是取别名) @app.route('/detail/<int:nid>',methods=['GET'],endpoint='detail') 默认转换器 D ...
分类:
Web程序 时间:
2019-11-11 21:35:08
阅读次数:
95
vue路由传参分为两种情况: 一、query和params传参的区别: 1、query传参显示参数,params传参不显示参数,params相对于query来说较安全一点。 2、取值方法也有不同:query取值:this.$route.query.XXX || this.$route.params. ...
分类:
其他好文 时间:
2019-11-11 12:25:50
阅读次数:
112
一 iptables 问题 1.没有安装,可以先安装 yum install iptables 2.防火墙的开启与关闭 即时生效,重启失效 service iptables start(开启) service iptables stop(关闭) service iptables restart(重启 ...
分类:
其他好文 时间:
2019-11-10 20:56:47
阅读次数:
124
15 I have a linux server that needs to get some routing. I'm fairly new at this and i don't find any clear source on google. The setup should be simpl ...
分类:
Web程序 时间:
2019-11-10 15:37:45
阅读次数:
116
十月新入职时候,接受一个项目,要用到webapi,当时公司的人发的项目不全,我写好api,却怎么也访问不到,甚是迷惑,于是翻阅资料, 发现在App_Start 文件夹中少了一个WebApiConfig.cs 文件 public static class WebApiConfig { public s ...