Raja

Results 8 comments of Raja

100% ```go func letterCombinations(digits string) (ret []string) { if digits == ""{ return } letterMap := []string{ " ", //0 "", //1 "abc", //2 "def", //3 "ghi", //4 "jkl", //5...

> Reference in new is 感谢!完美解决~

接口打桩感觉官方的gomock就挺好用的https://github.com/golang/mock 对这种私有结构体的公开方法进行mock可以采用gomonkey.ApplyMethod

Thanks for your response. Index hints can indeed be used in update statements. Here is the [documentation.](https://dev.mysql.com/doc/refman/8.0/en/index-hints.html). And these are samples. ```sql EXPLAIN UPDATE `sync_businessinfo` SET `is_deleted` = 0, `updated_by`...

I think the force index of the update statement cannot be realized through the extra provided by django orm, and it may need to be realized through raw sql

cronsun 前端采用 vue 编写,打包后转为 go 静态代码并被一起编译为二进制包。代码目录为 `cronsun/web/ui`。但由于依赖库版本等问题需要修改部分构建代码。 1. 新增 `cronsun/web/ui/copy-files.js` ```js const fs = require('fs'); fs.copyFileSync('index.html', './dist/index.html'); ``` 2. 修改 `cronsun/web/ui/package.json` ```json { "name": "cronsun-web-ui", "version": "1.0.0", "description": "", "scripts":...