上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页
摘要: 使用jpa非主键自增 在使用jpa时,想要通过自增字段来更加直观自己插入多少数据 需要的注解 @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "id",nullable=false,insertable=false,upd 阅读全文
posted @ 2023-01-30 10:19 Lafite-1820 阅读(402) 评论(0) 推荐(0)
摘要: 解决方法: 第一种: 由于后来加上的实体、对象在之前的数据没有关联上,所以造成脏数据、故根本的解决方法,就是将之前的测试数据删除,重新添加数据就行了 第二种: 2. 如果子表中没有主表ID对应的记录也可以正常加载数据,那么需要在主表字段上加一个@NotFound Annotation。示例如下:@O 阅读全文
posted @ 2023-01-29 17:45 Lafite-1820 阅读(320) 评论(0) 推荐(0)
摘要: admin@admindeMac-mini / % brew install mongodb-community@5.0 fatal: not in a git directory Warning: No remote 'origin' in /opt/homebrew/Library/Taps/h 阅读全文
posted @ 2023-01-17 19:13 Lafite-1820 阅读(275) 评论(0) 推荐(0)
摘要: 1, 安装一个 php@8.0 brew install php@8.0 2,将安装好的 php 整个文件移动到 phpstudy目录下 sudo mv /opt/homebrew/Cellar/php@8.0/8.0.26 /Applications/phpstudy/Extensions/php 阅读全文
posted @ 2022-12-19 14:33 Lafite-1820 阅读(997) 评论(0) 推荐(0)
摘要: thinkphp 执行 php think 报错    Using ${var} in strings is deprecated, use {$var} instead  PHP 社区 4 月底通过了一项只有一张反对票的提案,提案内容是在即将发布的 PHP 8.2 中 阅读全文
posted @ 2022-12-19 14:27 Lafite-1820 阅读(2140) 评论(0) 推荐(0)
摘要: The “https://packagist.laravel-china.org/packages.json” file could not be downloaded: Peer certificate CN=*.phphub.org' did not match expected CN=pack 阅读全文
posted @ 2022-12-16 20:58 Lafite-1820 阅读(267) 评论(0) 推荐(0)
摘要: https://registry.npmmirror.com/binary.html?path=git-for-windows 阅读全文
posted @ 2022-12-16 19:00 Lafite-1820 阅读(98) 评论(0) 推荐(0)
摘要: wp_query是一个wordpress用于复杂请求的的一个类,看到query懂开发的人就会反应这个是数据库查询的一个类,这个类可谓是非常有用的,可以帮助我们做很多复杂的查询。 wp_query的使用方法也很简单: $query = new WP_Query( 'author=123' ); // 阅读全文
posted @ 2022-12-15 11:19 Lafite-1820 阅读(772) 评论(0) 推荐(0)
摘要: 来源:https://www.runoob.com/w3cnote/composer-install-and-usage.html Composer 是 PHP 的一个依赖管理工具。我们可以在项目中声明所依赖的外部工具库,Composer 会帮你安装这些依赖的库文件,有了它,我们就可以很轻松的使用一 阅读全文
posted @ 2022-12-14 11:02 Lafite-1820 阅读(158) 评论(0) 推荐(0)
摘要: 4,wordpress 模板标签使用 wp_title() 系统标题 wp_title(参数一,参数二,参数三) 首页使用参数无效,默认分隔符">>" 参数一:自定义分隔符 参数二:true 和 false 参数三:分隔符的作用 left 和 right the_title() 标题 注意:该函数只 阅读全文
posted @ 2022-12-12 14:54 Lafite-1820 阅读(696) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页