最新发布第21页
Windows10 git commit报错node: command not found解决办法-Ddmit

Windows10 git commit报错node: command not found解决办法

在使用git准备提交文件时,报错: Commit failed with error 0 file committed, 1 file failed to commit: 上传车辆同行记录; .git/hooks/pre-commit: line 32: node: command not found 解决...
ddmit的头像-DdmitDdmit4年前
025750
Springboot提示No beans of 'RestTemplate' type found错误-Ddmit

Springboot提示No beans of ‘RestTemplate’ type found错误

错误信息 在使用RestTemplate时,IntelliJ Idea提示Could not autowire. No beans of 'RestTemplate' type found.。 代码清单: @Component public class SmsUtil { @Autowired private RestTem...
jQuery根据多个class name获取元素-Ddmit

jQuery根据多个class name获取元素

实现方式: <a href='javascript:void(0);' class='centerLeftNav active' id='1></a> <a href='javascript:void(0);' class='centerLeftNav' id='2'></a> var aTagId ...
ddmit的头像-DdmitDdmit4年前
014150
JS判断一个字符串是否包含某些特殊字符?-Ddmit

JS判断一个字符串是否包含某些特殊字符?

JS判断一个字符串是否包含某些特殊字符? 实现 /** * 判断字符串是否包含指定字符串数组中的某一项 * @param {String} text 字符串 * @param {Array} values 可能包含的字符串数组 * @returns {...
ddmit的头像-DdmitDdmit4年前
013961
简略记一下Office 365开发者计划加入过程-Ddmit

简略记一下Office 365开发者计划加入过程

简略步骤如下: 1.加入页面 中文 https://developer.microsoft.com/zh-CN/microsoft-365/dev-program 或英文 https://developer.microsoft.com/en-us/microsoft-365/dev-program 2.查看存储 htt...
ddmit的头像-DdmitDdmit4年前
014660
Office 365安装时只安装Word、Excel等特定项-Ddmit

Office 365安装时只安装Word、Excel等特定项

Office365默认安装时会将Word、Excel、PowerPoint、OneNote、Outlook、Publisher和Access全家桶全部装到电脑,而我们许多人只需要前三者。那么如何安装我们需要的选项呢,方法还是有的。 打开官...
ddmit的头像-DdmitDdmit4年前
023220
Hexo报错ERR_INVALID_URL解决-Ddmit

Hexo报错ERR_INVALID_URL解决

Hexo静态博客生成页面时报错 TypeError [ERR_INVALID_URL]: Invalid URL: https://ip访问:重定向到https://tdom.ml(跳转的时候浏览器可能提示不安全是正常的) 也就是将md文件中的所有连接都检...
ddmit的头像-DdmitDdmit4年前
015400
Springboot上传文件报错:the temporary upload location is not valid-Ddmit

Springboot上传文件报错:the temporary upload location is not valid

Springboot上传文件报错 Failed to parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location [/data/upload_tmp/work/Tomcat/localhost/ROO...
ddmit的头像-DdmitDdmit4年前
011690
SQL SERVER连接Secure Sockets Layer (SSL) 错误-Ddmit

SQL SERVER连接Secure Sockets Layer (SSL) 错误

今天java项目连接sql server突然连接不上了,报如下错误: com.microsoft.sqlserver.jdbc.SQLServerException: The driver could not establish a secure connection to SQL Server by using Se...
ddmit的头像-DdmitDdmit4年前
015410
SQL根据查询结果更新数据-Ddmit

SQL根据查询结果更新数据

一、SQL SERVER 情形1:根据关联字段更新 UPDATE Table_A SET Table_A.col1 = Table_B.col1, Table_A.col2 = Table_B.col2 FROM Some_Table AS Table_A INNER JOIN Other_Table AS Table_B ON Ta...
ddmit的头像-DdmitDdmit4年前
017260