V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  actar  ›  全部回复第 3 页 / 共 9 页
回复总数  176
1  2  3  4  5  6  7  8  9  
2022-10-21 16:27:23 +08:00
回复了 leeraya 创建的主题 问与答 有一点不解, gorm 怎么联系 struct 和数据库表的
也可以通过命名策略进行全局设置
https://gorm.io/zh_CN/docs/gorm_config.html#naming_strategy
2022-10-21 16:25:24 +08:00
回复了 leeraya 创建的主题 问与答 有一点不解, gorm 怎么联系 struct 和数据库表的
默认对结构体名称进行一个 蛇形命名 的转换
https://gorm.io/zh_CN/docs/conventions.html#%E5%A4%8D%E6%95%B0%E8%A1%A8%E5%90%8D
如果想自定义表名,可以实现 Tabler 接口
https://gorm.io/zh_CN/docs/conventions.html#TableName
2022-09-01 12:58:05 +08:00
回复了 wsph123 创建的主题 分享创造 💊「逼死前端狗」听说你是前端工程师?
快速下载歌曲脚本

(()=>{
const downloadMusic = async (i)=>{
const 歌曲 = 歌曲列表[i];
const res = await fetch(`https://${baseURL}:60384/music/${歌曲列表[i].id}`);
const url = window.URL.createObjectURL(new Blob([await res.blob()]));
const download = document.createElement("a");
download.innerText = '下载音乐';
download.download = `${歌曲列表[i].title}.mp3`;
download.href = url;
document.body.append(download);
download.click();
download.remove();
window.URL.revokeObjectURL(url);
};
const downloadMusics = async ()=>{
for (let i = 0; i < 歌曲列表.length; i++) {
await downloadMusic(i);
}
}
downloadMusics();
})()
2022-07-23 13:09:40 +08:00
回复了 NoKey 创建的主题 程序员 Java 后台开发,大家用 @Autowired 多么
构造器注入配合 lombok 的 @RequiredArgsConstructor 注解,挺省事的
Language injections
2022-07-11 16:42:35 +08:00
回复了 graetdk 创建的主题 分享创造 新品发布:支持中文的 AI 生成绘画作品工具
id:125365
test = test.map((item) => ({
...item,
'dn': '其他'
}))
2022-05-08 21:03:41 +08:00
回复了 sewer 创建的主题 分享创造 面包多 ts sdk 支持 nestjs 没测 + 一些吐槽
我认证的时候都是自助的,自己填写信息进行审核。现在改了吗,还要加客服微信了吗。
只是自己有兴趣,试了试。顺便写了一个 Java 的 SDK 。把激励奖励拿到了。
终端环境的参数两边的引号,是由终端进行处理的。传递进程序,是不带两边的引号的
const TeraCopy = "D:\\TeraCopy\\TeraCopy.exe"

func main() {
copyPaths := os.Args[1]
targetDir := os.Args[2]
command := exec.Command(TeraCopy, "copy", fmt.Sprintf("*%s", copyPaths), targetDir)
if err := command.Run(); err != nil {
panic(err)
}
}


可以这样写,亲测可行

TeraCopy.exe copy *"G:\1 source.txt" "G:\target\"
等价于
TeraCopy.exe copy "*G:\1 source.txt" "G:\target\"

exec.Command 传递参数的时候,不需要引号括起来
select concat('2022', '-', months.month) as time, count(articles.id) > 0 as exist
from (
select '01' as month
union
select '02' as month
union
select '03' as month
union
select '04' as month
union
select '04' as month
union
select '06' as month
union
select '07' as month
union
select '08' as month
union
select '09' as month
union
select '10' as month
union
select '11' as month
union
select '12' as month
) as months
left join articles on month(created_at) = months.month and year(articles.created_at) = '2022'
group by time;


随便写的,不保证任何效率
1  2  3  4  5  6  7  8  9  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5271 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 43ms · UTC 01:21 · PVG 09:21 · LAX 17:21 · JFK 20:21
Developed with CodeLauncher
♥ Do have faith in what you're doing.