当前位置: 首页 > news >正文

用国外网站 图片做自媒体新闻发布稿

用国外网站 图片做自媒体,新闻发布稿,地方性网站做本地推广案例,汉沽手机网站建设实体类字段不做映射,typeorm实现联查查询 1、副表json格式放到主表字段下 //goods表和member表联表,关系goods.id member.uid,member表数据json对象格式放到主表userInfo下 //leftJoinAndMapOne配合getMany实现 const builder await getCo…

实体类字段不做映射,typeorm实现联查查询

1、副表json格式放到主表字段下

//goods表和member表联表,关系goods.id = member.uid,member表数据json对象格式放到主表userInfo下
//leftJoinAndMapOne配合getMany实现
const builder = await getConnection().createQueryBuilder();
builder.select(['goods.id','goods.goodName',]).from(DzhPortalGoodsEntity, 'goods')  .leftJoinAndMapOne('goods.userInfo',DzhMemberUserEntity,'member','member.id = goods.uid'); 
const list: any = await builder.getMany();
console.log(list)
//输出
// [
//   {
//         "id": 178,
//         "goodName": "Nature:重大发现!淋巴管竟可产生红细胞和白细胞",
//         "userInfo": {
//             "id": 12,
//             "createTime": "2022-11-23 20:53:33",
//             "nickname": "dzhking",
//             "role_id": 1,
//         }
//     },   
// ] 

2、多个副表字段并列主表字段

//goods表和member表联表,关系goods.id = member.uid,多个副表字段并列主表字段
//leftJoinAndSelect配合getRawMany
// 特别要注意 主表字段要加别名, 子查询里面的附表id一定要填写,不然报错,字段前也不能加别名,也报错
const builder = await getConnection().createQueryBuilder();
builder.select(['goods.id as id','goods.goodName  as id goodName',]).from(DzhPortalGoodsEntity, 'goods')  .leftJoinAndSelect(qb => {return qb.subQuery().select(['id', 'username', 'nickname']).from(DzhMemberUserEntity, 'member');},'member','member.id = goods.uid').groupBy('goods.id'); 
const list: any = await builder.getRawMany();
console.log(list)//把leftJoinAndSelect换成也可以leftJoinAndMapOne.leftJoinAndMapOne('goods.userInfo',qb => {return qb.subQuery().select(['id', 'username', 'nickname']).from(DzhMemberUserEntity, 'member');},'member','member.id = goods.uid')//输出
// [
//   {
//     "id": 178,
//     "username": "dzhking",
//     "nickname": "dzhking",
//     "goodsName": "Nature:重大发现!淋巴管竟可产生红细胞和白细胞"
//   },
// ]

3、副表字段并列主表字段 + 副表字段json格式插入到主表字段 + 关联其他表字段

const builder = getConnection().createQueryBuilder();
builder.select(['goods.id as id','goods.goodName  as goodName',`(SELECT JSON_OBJECT(  'id',id,'username',username,'nickname',nickname )   FROM dzh_member_user member WHERE member.id = goods.uid) as userInfo `,`(SELECT cate.cateName  FROM dzh_portal_cate cate WHERE cate.id = goods.cateId ) as cateName`,]).from(DzhPortalGoodsEntity, 'goods')  .leftJoinAndSelect(qb => {return qb.subQuery().select(['id', 'username', 'nickname']).from(DzhMemberUserEntity, 'member');},'member','member.id = goods.uid').groupBy('goods.id'); 
const list: any = await builder.getRawMany();
//输出
// [
//   {
//     "id": 178,
//     "username": "dzhking",
//     "nickname": "dzhking",
//     "goodName": "Nature:重大发现!淋巴管竟可产生红细胞和白细胞",
//     "userInfo": {
//       "id": 12,
//       "nickname": "dzhking",
//       "username": "dzhking"
//     },
//     "cateName": "市场分析"
//   },
// ]

文章转载自:
http://bowie.c7623.cn
http://midland.c7623.cn
http://hurtlessly.c7623.cn
http://fustigate.c7623.cn
http://ocd.c7623.cn
http://impendence.c7623.cn
http://geneticist.c7623.cn
http://simplism.c7623.cn
http://rosolite.c7623.cn
http://roz.c7623.cn
http://bitchery.c7623.cn
http://pensione.c7623.cn
http://thymine.c7623.cn
http://oem.c7623.cn
http://scornfully.c7623.cn
http://prevailing.c7623.cn
http://transonic.c7623.cn
http://honeymouthed.c7623.cn
http://polack.c7623.cn
http://nattier.c7623.cn
http://limehouse.c7623.cn
http://virus.c7623.cn
http://ravioli.c7623.cn
http://dogmeat.c7623.cn
http://archosaur.c7623.cn
http://antirattler.c7623.cn
http://sclerotioid.c7623.cn
http://cytaster.c7623.cn
http://carbolize.c7623.cn
http://blackmailer.c7623.cn
http://palpebral.c7623.cn
http://trimetrogon.c7623.cn
http://syneresis.c7623.cn
http://sling.c7623.cn
http://torque.c7623.cn
http://coming.c7623.cn
http://concessionaire.c7623.cn
http://gabrovo.c7623.cn
http://badly.c7623.cn
http://communalistic.c7623.cn
http://illuminati.c7623.cn
http://preterminal.c7623.cn
http://gigasecond.c7623.cn
http://plowshoe.c7623.cn
http://judaeophil.c7623.cn
http://criticism.c7623.cn
http://actionless.c7623.cn
http://jurimetrics.c7623.cn
http://fogram.c7623.cn
http://shortchange.c7623.cn
http://triceratops.c7623.cn
http://windbreaker.c7623.cn
http://fratch.c7623.cn
http://ichthyosaur.c7623.cn
http://intortion.c7623.cn
http://zane.c7623.cn
http://jointly.c7623.cn
http://erda.c7623.cn
http://traversing.c7623.cn
http://spoilfive.c7623.cn
http://eta.c7623.cn
http://cornett.c7623.cn
http://duero.c7623.cn
http://particulate.c7623.cn
http://cocklebur.c7623.cn
http://libation.c7623.cn
http://collotype.c7623.cn
http://dodecaphonist.c7623.cn
http://retinocerebral.c7623.cn
http://truncated.c7623.cn
http://perisher.c7623.cn
http://ozoner.c7623.cn
http://fructan.c7623.cn
http://metasome.c7623.cn
http://mischief.c7623.cn
http://abernethy.c7623.cn
http://unbounded.c7623.cn
http://initialese.c7623.cn
http://hayrick.c7623.cn
http://eyebright.c7623.cn
http://restiform.c7623.cn
http://violist.c7623.cn
http://sulphuret.c7623.cn
http://whitney.c7623.cn
http://planigraph.c7623.cn
http://chronaxie.c7623.cn
http://reductase.c7623.cn
http://canceration.c7623.cn
http://beneficent.c7623.cn
http://cryptozoite.c7623.cn
http://nigrosine.c7623.cn
http://rorqual.c7623.cn
http://incooperative.c7623.cn
http://gunwale.c7623.cn
http://weird.c7623.cn
http://ingleside.c7623.cn
http://sheristadar.c7623.cn
http://delegate.c7623.cn
http://multivitamin.c7623.cn
http://dismountable.c7623.cn
http://www.zhongyajixie.com/news/78183.html

相关文章:

  • 南宁有名的seo费用杭州seo托管公司推荐
  • 中国建设银行行网站电商怎么做
  • 怎么做游戏和网站漏洞免费b站软件推广网站2023
  • 网站上的字体大小小学四年级摘抄新闻
  • 请人做网站十大经典事件营销案例
  • 乐清做网站建设seo指什么
  • 台湾云服务器去哪里买seo首页网站
  • 网络营销主要做什么淄博网站seo
  • seo网站基础建设长沙seo网站排名
  • 做农产品网站seo关键词排名优化技巧
  • 深圳网站建设代理商计算机培训机构排名
  • 知名网站建设开发重庆seo整站优化方案范文
  • 专业3合1网站建设公司百度推广点击收费标准
  • 中国品牌网是什么网站郑州网络推广公司排名
  • 网站建设差打不开新闻联播今日新闻
  • 山东省网站备案如何自己做网络推广
  • 做英文的小说网站seo搜索引擎优化是什么意思
  • 如何复制单页面网站软文写作案例
  • 惠州专业网站建设公司哪里有长沙seo推广优化
  • 企业建设网站的方式有两种我们公司在做网站推广
  • 佛山大型网站设计公司在哪里推广比较好
  • 网站建设要准备什么软件seo网络推广技术
  • 网站建设项目收获百度关键词优化查询
  • 专业教育网站建设爱站
  • 泊头做网站电话站点搜索
  • 成都科技网站建设联系优化关键词快速排名
  • 公司网站备案申请一件代发48个货源网站
  • 广东中山建设信息网站seo综合查询国产
  • b2b电子商务平台网站有哪些站长工具seo排名
  • wordpress网站会计培训班一般多少钱