找到答案网址: https://blog.csdn.net/qq_29269233/article/details/53725865 一、获取开发版SHA1: 1、打开android studio->view->Terminal,或者在最下面找到Terminal 如下图: 2、 输入命令 C: 进入 ...
分类:
移动开发 时间:
2020-11-20 11:35:46
阅读次数:
18
Django中-事务操作 事务干货:https://zhuanlan.zhihu.com/p/93067082 事务使用:https://www.cnblogs.com/oklizz/p/11240212.html \(~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...
分类:
其他好文 时间:
2020-11-19 13:01:14
阅读次数:
19
先给官方文档地址: https://docs.microsoft.com/zh-cn/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-3.1#rewrite-urls-for-correct-routing 然后说下我的踩 ...
分类:
Web程序 时间:
2020-11-19 12:58:39
阅读次数:
26
1 #include <iostream> 2 #include <cstdio> 3 #include <memory.h> 4 using namespace std; 5 const int INF=0x3f3f3f3f,city=4; 6 int main(){ 7 int a[city][ ...
分类:
其他好文 时间:
2020-11-19 12:53:22
阅读次数:
10
参照自文档http://www.cplusplus.com/reference/array/,教程http://c.biancheng.net/view/6688.html,和书籍《STL源码剖析》(侯捷) 定义: template < class T, class Alloc = allocato ...
分类:
其他好文 时间:
2020-11-19 12:34:47
阅读次数:
6
作者丨浮生忆梦 blog.csdn.net/m0_38110132/article/details/81481454 很长时间以来都没有怎么好好搞清楚RPC(即Remote Procedure Call,远程过程调用)和HTTP调用的区别,不都是写一个服务然后在客户端调用么?这里请允许我迷之一笑~N ...
分类:
Web程序 时间:
2020-11-18 13:23:32
阅读次数:
30
Linux下获取当前的目录,需执行以下命令: $(cd `dirname $0`;pwd) 其中, dirname $0,取得当前执行的脚本文件的父目录 cd `dirname $0`,进入这个目录(切换当前工作目录) pwd,显示当前工作目录(cd执行后的) 在使用的过程中需注意此事项:命令中“` ...
分类:
系统相关 时间:
2020-11-18 13:15:34
阅读次数:
40
一、使用view形式的回到顶部 wxml: <image src='图标' hidden='{{!floorstatus}}' bindtap="goTop"></image> wxss: /* 返回顶部 */ .goTop{ height: 80rpx; width: 80rpx; positio ...
分类:
微信 时间:
2020-11-18 12:59:46
阅读次数:
32
1、HttpRequest对象的属性和方法 http请求:HttpRequest对象 def seetl(request): request.path # 请求页面全路径(不包括域名)request.get_full_path()请求路径中会加入相关参数(针对于GET请求) request.meth ...
分类:
其他好文 时间:
2020-11-18 12:41:46
阅读次数:
7