场景 在使用node响应英文时可以在app.js中这样写 //代码块: node-http-server //表示引入http模块 var http = require('http'); /* request 获取客户端传过来的信息 response 给浏览器响应信息 */ http.createS ...
分类:
其他好文 时间:
2020-07-30 01:54:36
阅读次数:
101
phpexcel图片获取常见的两种方式: require_once dirname(__FILE__) . '/../Jn/PHPExcel.php'; $filePath = "123.xls"; $inputFileType = PHPExcel_IOFactory::identify($fil ...
分类:
Web程序 时间:
2020-07-29 17:38:51
阅读次数:
81
最近发现在开发环境下出现问题 将HTML页面复制到android/app/src/main/assets文件夹 source = Platform.OS 'ios' ? require('../Static.bundle/**html') : { uri: 'file:///android_asse ...
分类:
移动开发 时间:
2020-07-29 17:35:10
阅读次数:
141
Redis 安装 Window 下安装 下载地址:https://github.com/tporadowski/redis/releases。 Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 C 盘,解压后,将文 ...
config 配置 1 # -*- coding = utf-8 -*- 2 # @Time : 2020/7/28 17:51 3 # @Author : 贾伟文 4 # @File : config.py 5 # @Software : PyCharm 6 7 DB_URI = 'mysql:/ ...
分类:
其他好文 时间:
2020-07-29 10:28:10
阅读次数:
67
一、Controller相关注解 1、@Controller与@RestController注解 ①@Controller:添加在Controller 类上,指定Spring类的实例是一个控制器。 ②@RestController:添加在Controller 类上,是一个复合注解,它包含了@Cont ...
分类:
编程语言 时间:
2020-07-27 15:56:17
阅读次数:
68
这个是因为没有将requires_grad设为True,l=LOSS(out,label)中的l默认是requires_grad为false,这个l其实也是一个张量Tensor类型,将其的requires_grad改为True后,使用backward函数就可以得到requires_grad为True ...
分类:
其他好文 时间:
2020-07-26 22:55:24
阅读次数:
279
错误提示: 'packaging' with value 'jar' is invalid. Aggregator projects require 'pom' as packaging. @ line 3, column 110 问题背景: spring boot 聚合工程,clean 报如上错误 ...
分类:
编程语言 时间:
2020-07-26 02:01:07
阅读次数:
79
gulpfile.js const gulp = require('gulp'); const cssnano = require('gulp-cssnano'); const sass = require('gulp-sass'); const rename = require('gulp-ren ...
分类:
其他好文 时间:
2020-07-26 01:14:27
阅读次数:
91
1.关于from module import *的说明 在Python的教材和示例代码中,经常会看到 from xxx import * 的用法,但在实际产品的代码中,应该要避开这样的用法。Python模块中包含任何数量的类、函数、或者变量,但使用from xxx import * 用法调用模块时, ...
分类:
编程语言 时间:
2020-07-26 00:39:30
阅读次数:
76