安装 composer require aliyuncs/oss-sdk-php 基类 <?php /** * Created by PhpStorm. * User: ZhangYongFeng * Date: 2021/1/5 * Time: 16:37 * ━━━━━━━━━神兽出没━━━━━ ...
分类:
Web程序 时间:
2021-01-08 11:36:39
阅读次数:
0
修改golang包路径的时候一直报红字,因为go.mod里面也要一起修改。否则一直报错。 go.mod包名 module proxy-mgr mian.go里面的包名路径 import ( _ "proxy-mgr/boot" _ "proxy-mgr/router" ) ...
分类:
其他好文 时间:
2021-01-08 10:52:41
阅读次数:
0
我们平时在开发APP过程中,经常会遇到某些SDK需要配合配套的签名才能正常使用,例如微信登录。但是我们不可能每次都安装release包进行调试,这时就需要配置debug模式下的签名 在app主module的build.gradle文件中配置如下代码: signingConfigs { config1 ...
分类:
移动开发 时间:
2021-01-08 10:43:54
阅读次数:
0
1.循序渐进的脚本模块 脚本模块是采用Python编写的。 1.1 使用ModuleWizard的模板创建Scripted Module 参考: https://na-mic.org/wiki/2013_Project_Week_Breakout_Session:Slicer4Python http ...
分类:
其他好文 时间:
2021-01-07 12:24:59
阅读次数:
0
https://stackoverflow.com/questions/29087882/android-studio-run-debug-configuration-error-module-not-specified 更新gradle / gradle plugin解决问题 I was tryi ...
分类:
移动开发 时间:
2021-01-06 12:17:32
阅读次数:
0
import sys #第1:print(6/0) #直接运行该命令,出现异常,程序终止 #异常提示: '''Traceback (most recent call last): File "F:/file2.py", line 2, in <module> print(6/0) ZeroDivis ...
分类:
编程语言 时间:
2021-01-06 12:10:07
阅读次数:
0
老的项目用的 uniapp 集成了一些原生功能,但都是module,没有使用到Component 。 这次新的需要使用自定义Component。 按照官网使用了 uniapp-v8-release.aar 依赖包导致和老的 uniapp-release.aar依赖包不兼容,调整Component 样 ...
分类:
移动开发 时间:
2021-01-04 11:34:23
阅读次数:
0
TypeError: 'module' object is not callable Person.py """ 类的定义 """ class Person: # 构造方法 def __init__(self, n, a, u): # global name, age self.name = n s ...
分类:
其他好文 时间:
2021-01-04 10:56:48
阅读次数:
0
1 // 抓取,添加数据 2 public function save(){ 3 require 'QueryList/phpQuery.php'; 4 require 'QueryList/QueryList.php'; 5 // 要抓的网址 6 $url = 'http://www.techwe ...
分类:
其他好文 时间:
2021-01-04 10:33:29
阅读次数:
0
R语言中常用到的输出形式如下(这里不是指输出到文件):print()cat()message()warning()stop上面5中输出形式,可以分为两类:print()和cat()是以标准输出(stdout)的形式输出;而剩下的三种(messages(),warning(),stop())是以标准错误(stderr)的形式输出。这类似于Linux环境中的输出形式。详细请参考:Linux中标准输出和
分类:
编程语言 时间:
2021-01-02 11:45:48
阅读次数:
0