相关文章
uniapp新建的vuecli项目启动报错并且打包失败的问题(已解决)
我的项目新建流程如下 运行之后就是如下报错 解决办法:
安装如下依赖: npm i postcss-loader autoprefixer8.0.0 npm run build 编译失败 安装如下依赖: npm install postcss8.2.2 最终package.json文件如下
{"name": "ls…
建站知识
2024/12/22 21:20:50
【mongoose】mongoose 基本使用
1. 连接数据库
// 1. 安装 mongoose
// 2. 导入 mongoose
const mongoose require(mongoose)
// 3. 连接 mongodb 服务
mongoose.connect(mongodb://127.0.0.1:27017/xx_project)
// 4. 设置回调 .on 一直重复连接 .once 只连接一次
mongoose.connection.on(open, () >…
建站知识
2024/12/17 14:35:52
DAY45 70. 爬楼梯 + 322. 零钱兑换 + 279.完全平方数
70. 爬楼梯
题目要求:假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢?
爬楼梯的dp版本,完全背包。
class Solution {
public:int climbStairs(int n) {vector<int>…
建站知识
2024/12/23 21:34:20
Scala语言用Selenium库写一个爬虫模版
首先,我将使用Scala编写一个使用Selenium库下载yuanfudao内容的下载器程序。 然后我们需要在项目的build.sbt文件中添加selenium的依赖项。以下是添加Selenium依赖项的代码:
libraryDependencies "org.openqa.selenium" % "selenium-ja…
建站知识
2024/12/20 18:55:51
切换win11 账户后,git报错
问题场景: 切换win11 账户后,git报错 git pull 报错: fatal: detected dubious ownership in repository at D:xxxxx D:/0xxxxxx is owned by: xxxxxxxxxxxxxxxxx but the current user is: xxxxxxxxxxxxxxxxxx To add an exception for this…
建站知识
2024/12/22 13:08:05
BigDecimal类型使用注意事项
BigDecimal类型使用是非常常见的,今天我们分享一下:
1、加
BigDecimal result num.add(n);
2、减
BigDecimal result num.subtract(n);
3、乘
BigDecimal result num.multiply(nu);
4、除
BigDecimal result num.divide(n,4,BigDecimal.ROUN…
建站知识
2024/12/23 21:32:58
Django系列之Serializer的source参数使用、自定义序列化方法
数据准备
models.py
from django.contrib.auth.models import AbstractUser
from django.db import modelsclass Publish(models.Model):name models.CharField(max_length32)city models.CharField(max_length8)email models.CharField(max_length32)def __str__(self):r…
建站知识
2024/12/16 17:38:36