CaoMeiYouRen / rss-impact-server

一个支持 Hook 的 RSS 订阅工具。本项目为后端部分。文档:https://rss-docs.cmyr.dev/
https://rss-demo.cmyr.ltd/
GNU Affero General Public License v3.0
135 stars 6 forks source link

修复 postgres 数据库插入新数据时,bigserial 类型的 id 返回的是 string 类型 #315

Open github-actions[bot] opened 2 months ago

github-actions[bot] commented 2 months ago

https://github.com/CaoMeiYouRen/rss-impact-server/blob/059b2a467a9f3e3286a5a14bc62aba53cd9bf5cf/src/controllers/feed/feed.controller.ts#L100


        }
        const rss = await rssParserURL(url)
        const { title, description, image } = rss || {}
        // TODO 修复 postgres 数据库插入新数据时,bigserial 类型的 id 返回的是 string 类型
        const feed = await this.repository.save(this.repository.create({
            title,
            description: description || '',
CaoMeiYouRen commented 1 month ago

这个是 typeorm 的问题,postgres 驱动没有问题