宿愿Cc

Results 5 issues of 宿愿Cc
trafficstars

修改代码热更新后点击按钮,状态不会更新,不清楚是什么原因 ```json "dependencies": { "@craco/craco": "^5.7.0", "hox": "^1.1.2", "node-sass": "^4.14.1", "react": "^17.0.1", "react-dom": "^17.0.1", "react-router-dom": "^5.2.0", "react-scripts": "4.0.0", "simple-progress-webpack-plugin": "^1.1.2", "web-vitals": "^0.2.4" }, ``` ```js import { useState } from...

#### Description Why is `next/link` used to jump to the article details page but the article list is not preloaded,When you click on the article details page from the home...

## 背景 我的需求来源是,因为现在单词的输入区域,是有一个个分段的下划线的__ __,这个下划线它可以给我起到一些辅助作用,它会提示我这个句子一共由几个单词组成。 如下面这个示例,我大概可以猜到有后面是什么单词,尽管这个示例比较简单,但应该足以展示我需要表达的意思。 当我想要检验自己是否完全掌握这些内容的时候,以及当我对某个课程二刷的时候,下划线的辅助会让我错误的让我感觉我掌握了这些内容。 ## 期望 是否可以在单词的输入位置是一长条下划线,它随着我输入的内容长度而增长,它不会起任何提示作用,如此才可以检验我是否真正的掌握了这些单词,而不是自我麻醉,大致效果如下所示。 所以是否可以在设置或者其它位置增加个功能开关,开启这个开关后,单词的输入区域就变成一整条线,有人和我一样有这个需求吗。

Feature
Frontend

Fixed an error when requestBody was of type "object" When the requestBody type is Object, an error is reported ``` json { "openapi": "3.0.3", "info": { "title": "Pets", "version": "1.0.0"...

### 🐛 bug 描述 `syncToUrl`是`ProTable`中用来将查询参数和url进行同步的一个选项配置,当我的项目使用hash路由时,在不同页面进行导航进行切换时,它会始终保留上一个页面的`searchParams`。 ### 📷 复现步骤 ```js syncToUrl: (values, type) => { if (type === 'get') { return values; } return values; } ``` 页面进行导航时,我使用的是react-router-dom的`Link`以及`useNavigate()` 当我使用了syncToUrl选项后,那么url `test.com/#/home` 会变成...