Python+Flask(2)--通过flask paginate解决列表分页问题

先看最终实现效果:

 实现主要步骤及重要代码如下:

1.列表需要用到的数据源及内容自己随便建立,我这边用新闻资讯数据测试

CREATE TABLE `article` (
  `aid` int(11) NOT NULL AUTO_INCREMENT,
  `cat_id` int(11) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `shorttitle` varchar(255) DEFAULT NULL,
  `source` varchar(64) NOT NULL,
  `keywords` varchar(64) NOT NULL,
  `description` varchar(512) NOT NULL,
  `body` text NOT NULL,
  `clicks` int(11) DEFAULT NULL,
  `picture` varchar(255) DEFAULT NULL,
  `author_id` int(11) DEFAULT NULL,
  `allowcomments` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `create_time` datetime DEFAULT NULL,
  `is_delete` tinyint(1) DEFAULT NULL,
  `flag` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`aid`),
  KEY `author_id` (`author_id`),
  KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of article
-- ----------------------------
INSERT INTO article VALUES ('1', '1', 'PHP正则表达式的几则使用技巧重庆9999999999', '王嘉尔看女团反应亮了', '0', '德阳新闻', '88888888888888888888888888888888888\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				', '<p>				</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>88888888888888888888888888888888888</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>\r\n				</p>', '3', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '0', '0', '0', '2018-12-16 21:27:49', '0', null);
INSERT INTO article VALUES ('2', '1', '王嘉尔看女团反应亮了 网友:没有感情的鼓掌机器', '王嘉尔看女团', '0', '德阳新闻', '在mysql5.1的时候,我们设计数据表可能忘记给某个字段一个默认值,比如int型数据就给0,varchar类型数据就给空字符串,float类型就是0.0,datetime就是0000-00-00\r\n 00:00:00,但php写入数据到表时这个字段也可能没有给值,这时候数据库会自动根据数据类型填充空值。但是,当这段php代码放到mysql5.6上运行时,就经', '<p>在mysql5.1的时候,我们设计数据表可能忘记给某个字段一个默认值,比如int型数据就给0,varchar类型数据就给空字符串,float类型就是0.0,datetime就是0000-00-00\r\n 00:00:00,但php写入数据到表时这个字段也可能没有给值,这时候数据库会自动根据数据类型填充空值。</p><p>但是,当这段php代码放到mysql5.6上运行时,就经常报错了,典型提示如下</p><p><br/></p>', '9', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '4', '0', '0', '2018-12-16 21:37:06', '0', null);
INSERT INTO article VALUES ('3', '24', 'Python的ORM框架sqlalchemy的查询多条数据只显示一条', 'Python', '0', '德阳新闻', 'Python的ORM框架sqlalchemy的查询多条数据只显示一条', '<p>Python的ORM框架sqlalchemy的查询多条数据只显示一条</p>', '10032', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '4', '0', '0', '2018-12-17 14:12:34', '0', null);
INSERT INTO article VALUES ('4', '1', '4名中国粉丝买头等舱追韩星 见偶像后下飞机退全款', '中国粉丝', '0', '中国粉丝', '(原标题:丢人!韩媒爆料一起中国粉丝追星的“骚操作”)昨天,有韩国媒体爆料了一起中国粉丝追星的“骚操作”:据称,有4名中国粉丝为了追星,先是买了跟偶像同一班的头等舱机票,在成功见到偶像后突然要求下飞机并全额退款。并且,他们还成功了……但这却导致机上360名乘客被迫重新安检,航班严重延误', '<p class=\"otitle\" style=\"margin-top: 28px; margin-bottom: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 28px; font-family: &quot;Microsoft Yahei&quot;; text-indent: 2em; color: rgb(64, 64, 64); text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">(原标题:丢人!韩媒爆料一起中国粉丝追星的“骚操作”)</p><p style=\"margin-top: 28px; margin-bottom: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 28px; font-family: &quot;Microsoft Yahei&quot;; text-indent: 2em; color: rgb(64, 64, 64); text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\"><br/></p><p style=\"margin-top: 28px; margin-bottom: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 28px; font-family: &quot;Microsoft Yahei&quot;; text-indent: 2em; color: rgb(64, 64, 64); text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">昨天,有韩国媒体爆料了一起中国粉丝追星的“骚操作”:</p><p style=\"margin-top: 28px; margin-bottom: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 28px; font-family: &quot;Microsoft Yahei&quot;; text-indent: 2em; color: rgb(64, 64, 64); text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">据称,有4名中国粉丝为了追星,先是买了跟偶像同一班的头等舱机票,在成功见到偶像后突然要求下飞机并全额退款。并且,他们还成功了……</p><p style=\"margin-top: 28px; margin-bottom: 0px; padding: 0px; font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; line-height: 28px; font-family: &quot;Microsoft Yahei&quot;; text-indent: 2em; color: rgb(64, 64, 64); text-align: justify; white-space: normal; background-color: rgb(255, 255, 255);\">但这却导致机上360名乘客被迫重新安检,航班严重延误</p><p><br/></p>', '31', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '4', '0', '0', '2018-12-17 14:19:47', '0', null);
INSERT INTO article VALUES ('5', '2', '新零售快讯:瑞幸咖啡9个月净亏8.6亿', '新零售快讯', '0', '瑞幸咖啡', '12月20日,卜蜂莲花迎来徐州中山北路店(君盛广场店)盛大开业。这是卜蜂莲花大北方区在今年开出的第二家大店,这是继11月16日徐州大学路新店开业后,又一典型的智慧型时尚大卖场。据记者了解,作为现代智慧型的新型商超,卜蜂莲花徐州中山北路店集AI智能技术的应用、时尚的装修装饰、全新理念的布置、优质的商品直采于一身	\r\n				\r\n				\r\n				\r\n				', '<p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>1、百丽退市这一年:发力新零售 重回第一</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">开启转型一年来,百丽国际似乎刻意保持着低调。如果不是双11爆出的亮眼成绩单,这家零售巨头已经很久没有出现在行业媒体视野里了。“今年双11,我们有12000家店参与到其中,线上线下已经打通了。”百丽国际执行董事李良表示,百丽国际庞大的线下零售网络被数据化赋能后,成为了转型重要的助推力。据了解,今年双11,百丽集团鞋、体、服三大业务线上销售突破9.68亿元,仅1小时53分超越去年全天成交,同比增长71%,同期线下销售增长超过18%,创下单日销售额新纪录。其中,在天猫时尚鞋靴行业前10名中,百丽集团旗下品牌占据5席,鞋类业务牢牢占据鞋靴行业第一;集团整体运动业务线上销售同比增加110%。(新零售智库)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>2、谁杀死了无人货架?</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/18a46e2f2c714af09fce57f253afc316.jpg\" title=\"谁杀死了无人货架?.jpg\" alt=\"谁杀死了无人货架?.jpg\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">放眼整个行业你会发现,在今年从年初持续到年末的一片裁员倒闭潮中,最先倒闭的反倒是那些曾经在2017年以巨大成本优势以及疯狂地推速度而崛起的开放式无人货架明星们。活下来的玩家们,则以AI与更加场景化的运营支撑起了面向最后十米消费市场的无人货架2.0的崛起。面向最后十米消费市场的1.0无人货架模式迈向2.0智能货柜模式的过程中,以技术为驱动的交易闭环逐渐形成,交易风险随之降低,成本也变得更加可控,可持续发展取代圈地扩张成了2.0阶段的热点。但是最后十米的零售市场终究存在,无人化也成为了行业共识。技术赋能不仅为行业带来了交易上的闭环,同时也为市场中的商业模式带来了更多元的参与方式。这一过程中,智能货柜兴起、传统贩卖机复兴,单一标品运营变成了多元化的产品运营,电商化平台出现,不同类型的玩家从资本大战转变为技术大战。在这个0到1的市场阶段,故事,还远远不到结局。(智东西 )</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>3、百胜中国线上试水卖牛排 跨界生鲜流量待考</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">近两年一直谋求品牌升级的百胜中国开始尝试生鲜电商。记者近日独家获悉,百胜中国悄然在天猫上线 “烧范儿” 网店,以销售进口牛排为主。目前百胜中国暂未对此事做出回应,但烧范儿客服证实确为百胜中国旗下电商品牌。相比百胜中国借助旗下肯德基、必胜客等餐饮品牌拓展电商业务,“烧范儿”从生鲜食材的角度切入,在业内人士看来不仅是百胜中国寻盈利点的新尝试,也是会为百胜中国布局供应链留下想象空间。(北京商报)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>4、瑞幸咖啡9个月净亏8.6亿 上线美团外卖寻求更多流量</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">瑞幸咖啡在美团外卖也上线了,品类、价格与其应用一致,但配送仍是其自己配送——美团外卖上标注由“商家配送”,费用一样为 6 元。瑞幸咖啡的外卖配送签给了顺丰,目前尚未有进一步消息涉及与美团在外卖配送上的合作。截至目前,瑞幸咖啡也没有公布其靠补贴吸引来的客户复购率或相关的数据。但根据记者得到一份据称是瑞幸咖啡 B 轮融资商业计划书部分截图,瑞幸咖啡前 9 个月累计销售收入 3.75 亿元,净亏损 8.57 亿元,毛利润 -4.33 亿元。(好奇心日报)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>5、卜蜂莲花徐州中山北路店开业 首创智慧商超深耕二线城市</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/dd9e01f580864161817d60da8ab9131e.jpg\" title=\"卜蜂莲花徐州中山北路店开业 首创智慧商超深耕二线城市.jpg\" alt=\"卜蜂莲花徐州中山北路店开业 首创智慧商超深耕二线城市.jpg\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">12月20日,卜蜂莲花迎来徐州中山北路店(君盛广场店)盛大开业。这是卜蜂莲花大北方区在今年开出的第二家大店,这是继11月16日徐州大学路新店开业后,又一典型的智慧型时尚大卖场。据记者了解,作为现代智慧型的新型商超,卜蜂莲花徐州中山北路店集AI智能技术的应用、时尚的装修装饰、全新理念的布置、优质的商品直采于一身,门店智能化的升级,全面提升了门店整体的运营效率和以人为本的人性化体验,让消费者切身体验到购物满意度。(联商网)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>6、淘宝称支付宝不再是唯一:或将引入云闪付</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/b8343babe1fa41379a7741e34ccd9d6c.png\" title=\"淘宝称支付宝不再是唯一:或将引入云闪付.png\" alt=\"淘宝称支付宝不再是唯一:或将引入云闪付.png\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">12月19日深夜,淘宝突然发了一则很“暧昧”的微博,隔空喊话支付宝:“明天我们就不再是彼此的唯一了。”新的支付方式?微信支付肯定会第一个进入大家的脑海,但目前的形势下,淘宝支持微信支付的概率实在低得基本不用考虑,更可能的应该是银联的云闪付。云闪付是一个支付体系,包含了银行、国内外手机厂商、通信运营商的各类移动支付产品,比如苹果的Apple Pay、三星的Samsung Pay、华为的Huawei Pay、小米的Mi Pay、魅族的MeizuPay,以及NFC HCE、银联钱包等等,再加上银联的背景和实力支持,可以说会逐渐改变整个移动支付市场的态势。(网易科技)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>7、京东到家发布新一代门店履约解决方案 拣货时效缩至4分钟</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">近日,京东到家正式发布新一代“零售门店1小时电商履约解决方案”——京东到家全品类拣货区解决方案。门店运用该方案,仅需设置200-300㎡的拣货区域,即可支持线上销售3000SKU,日拣货单量3000单以上,日峰值单量达到8000单的零售卖场完成高效拣货;并通过京东到家WMS库存管理系统实现一站式数字化管理,借助拣货助手App进一步提升拣货人效。此前,该方案已在沃尔玛、永辉等商家门店投入使用,平台数据显示,其单均拣货时效仅为4分钟,拣货员人均每小时可拣货15单以上,人效达到传统卖场拣货的4倍以上。(联商网)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>8、中国成全球最大物流市场 预计今年物流总费用近13万亿元</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">在第十九届中国国际运输与物流博览会上,中国物博会组委会执行主任倪玮表示,2017年我国物流总费用为12.1万亿元,伴随GDP增长和物流需求增加,预计2018年我国物流总费用将接近甚至超过13万亿元。他说:“改革开放40年来,我国已成为具有全球影响力的物流大国和全球最大的物流市场。”(澎湃)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>9、京东与随行付达成战略合作</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">近日,京东与国内综合性收单机构随行付宣布达成战略合作。未来双方将在京东之家、京东无人超市、京东物流(京邦达)、京东无界零售加盟店、京东支付及其他细分行业达成深度合作,业务范围不仅涵盖了京东线下1800家门店,未来还将进一步覆盖各类细分领域的不同场景。随行付拥有银行卡收单支付牌照、移动支付牌照、互联网支付牌照及跨境结算资质。(新浪财经)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>10、名创优品在印度已开近70家店 到2020年将开800家</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">印度名创优品首席业务发展官刘阳在采访中透露,受到市场反响的鼓舞,公司已经制定到2020年开800家店的计划。公司接下来将瞄准印度三四线城市,甚至会考虑招募加盟商和其它合作形式,以助其扩张。目前,名创优品已经在印度开了近70家店,第一年的营业额为70亿卢比(9800万美元)。(Quartz)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>11、淘宝上线“国漫IP商业平台”</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">由淘宝二次元与中国国际动漫节共同开发的“国漫IP商业平台”正式上线。官方称,国内外IP“入淘”将享受从版权管理、内容营销、商品授权到前台场景匹配等一站式的“管家服务”。包括奥特曼、新世纪福音战士、霹雳国际、秦时明月、同道大叔、西子猫猫、萌力星球在内的超50家国内外知名IP与超过400名淘宝卖家就IP授权,衍生品开发等内容进行了现场洽谈,预计衍生品销售额将达亿元。(36氪)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>12、印尼电子商务增速居全球首位</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">根据PPRO Financial 有限公司就有关世界电子商务的研究报告称,2017年印度尼西亚(或印尼)企业对消费者的电子贸易市场每年增长78%,居世界首位,价值达76亿美元。Ignatius Untung还称,电子商务增长快速是因为互联网和智能手机的发展相当庞大。几乎大部分印尼民众都熟悉使用互联网和智能手机,电子商务有助于印尼经济。(格隆汇)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>13、零食行业进入“4.0版”:专家预测2020年总产值接近3万亿元</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/40d88f73bc0440b39f3887ce51cad3b1.jpg\" title=\"零食行业进入“4.0版”:.jpg\" alt=\"零食行业进入“4.0版”:.jpg\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">商务部流通产业促进中心服务业研究室副主任陈丽芬研究员介绍,零食行业进入“4.0版”。零食行业总产值规模呈现快速上升趋势,从2006年的4240.36亿元增长至2016年的22156.4亿元,增长幅度达422.51%,年复合增长率为7.98%。根据预测,到2020年零食行业总产值规模将接近3万亿元。(中新网)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>14、拼多多与国美将在大件物流领域进行合作</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">拼多多与国美零售旗下的安迅物流,近日已经完成了双方之间的系统对接开发。下一步,双方将继续在大件物流的仓配一体化业务上分阶段进行合作。安迅物流将充分发挥在全国的网络覆盖优势,为拼多多平台上包括家电、家具、运动器械等大件商家提供大件商品的仓配一体化业务。(亿邦动力)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>15、美移动支付商Square申请设立自有银行</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">据CNBC报道,移动支付公司Square正在申请设立自有银行。如果Square公司的计划获得批准,该公司就可以在不经过外部银行和中介机构的情况下运营。此外,Square还将获得存款保险功能。(腾讯科技)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>16、社区团购平台同程生活获腾讯、同程等数千万元天使投资</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/9006eed3647040e0930ab321e994e2e2.jpg\" title=\"社区团购平台同程生活获腾讯、同程等数千万元天使投资.jpg\" alt=\"社区团购平台同程生活获腾讯、同程等数千万元天使投资.jpg\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">记者12月20日获悉,同程旅游孵化的社区团购平台同程生活宣布获得数千万元天使轮投资,腾讯、同程等投资。同程生活创始人兼CEO何鹏宇表示,未来一年内,同程生活计划继续融资数亿元,日服务家庭超过百万个。“未来,社区团购有希望成为家庭消费的主要场景之一,想象空间极大。而对于同程生活来说,从生鲜起步,未来远不止于生鲜。”2018年,同城生活获同程众创启程金禾基金1000万元种子轮投资。截至目前,同程生活已服务超过1000个社区、几十万家庭,月交易额达到数千万人民币,地区覆盖华东及华南。(猎云网)</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>17、日本7-Eleven开通人脸识别进店支付</strong></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><img src=\"http://img.iotworld.com.cn/EditorFiles/201812/c8710b0cfa6a433f9b8938eca9a823a0.jpg\" title=\"日本7-Eleven开通人脸识别进店支付.jpg\" alt=\"日本7-Eleven开通人脸识别进店支付.jpg\" style=\"vertical-align: top;\"/>&nbsp;</center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">随著人工智能(AI)及物联网等技术不断发展,多间大型零售店都纷纷实验无人智能商店的概念。如今,日本7-Eleven便利店就同NEC合作,在东京都港区的三田国际大楼推出首间智能分店,让当地的员工经注册后,通过人脸识别技术进店和支付,十分方便。据报道,有关7-Eleven分店采用NEC的AI及物联网实验技术。首次入店的顾客需要先用员工证登记,以后就可通过人脸识别进店。店铺内的系统会自动记录顾客的资料,同时根据顾客的性别及年龄而推出不同的广告。例如,当20多岁的女性进入店时,就会播出牛奶咖啡的广告,同时会对40多岁的男性播出饭团的广告。日本7-Eleven总裁古屋一树表示,他们从来不考虑朝无人商店方向前进,更指有关技术将会帮助员工处理不少杂务,让他们可以集中处理待客事务,提高服务质素。(玩生活 乐科技)</p>', '37', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '0', '0', '0', '2018-12-17 14:24:59', '0', null);
INSERT INTO article VALUES ('6', '2', '写在Predix独立之后:中国工业互联网做对了什么', '中国工业互联网', '0', '中国工业互联网', '12月17日,张柏芝工作室微博公布得子喜讯,张柏芝已于11月诞下第三子,爱称“小王子”,母子均安。张柏芝工作人员今日向媒体表示:“柏芝已于11月生下可爱宝宝,母子均安。孩子与家人是柏芝一直以来守护的最重要的人,在接下来的日子里,柏芝会全力为三个孩子创造更加优越的成长条件,同时也会努力带来更好的作品。‘小王子’满月了,感谢大家的关心与祝福!”据了解,目前张柏芝\r\n				\r\n				\r\n				\r\n				', '<p>				</p><p><br/></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">作为一家有着百年历史的老牌工业巨头,通用电气(GE)在工业互联网、数字工业领域的一举一动曾被视为业界的标杆,然而过去的执牛耳者,在最近一年却面临了数重考验。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">先是去年11月位于美国圣拉蒙总部的GE Digital发生裁员潮,而后GE新上任的CEO弗兰纳里宣布集团未来的重心将放在航空、电力和医疗三大业务主线上,完全推翻了前任杰夫·伊梅尔特费劲心力构造的数字工业版图。最令人焦虑的莫过于不断拖累营收的GE Digital。自今年8月以来,多有传言指出GE将打包出售包括Predix平台在内的数字资产。透过这次事件,甚至国内有许多媒体表示出了对工业互联网未来发展的担忧。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">好在这一切最终是尘埃落定。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">近日,GE宣布将会成立一家独立运营的工业物联网软件业务公司,旗下包含了Predix平台,APM(资产绩效管理),MES(制造执行系统)等软件业务,以及GE其他的数字业务。据了解,这个新公司将拥有独立的品牌以及股权结构,业务也将更加面向市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">应声上涨的股价或许让二级市场重新拾起了对GE的信心,但回顾GE Digital和Predix过去几年的发展历程,不难看到问题所在。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>首先,最大的诟病在于数字业务对GE整体营收的拖累。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">通用电气的数字化转型大约可以追溯到2013年,彼时GE雄心勃勃地自建数据中心,推出了Predix工业互联网平台产品,其中甚至包含了工业云的架构层。但巨大的研发投入和有限的营收增长实则拖累了这家工业巨头。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">有媒体报道称,GE数字化业务在全球有将近上百亿美元的投入,但创造的收入却十分有限,始终没有得到爆发式的增长。相关数据显示,GE Digital在2017年的营收大约为40亿美元,与2016年相比增长了12%,始终处于亏损状态,而且通用电气2017年年报也显示,公司净利润较去年下降了176.10%。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">面对盈利表现如何不佳的数字业务板块,将业务剥离出来似乎是对股东负责的最佳手段。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>其次,过于“单打独斗”并不是做平台的终极思路。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">从诞生之初的PaaS平台,到后来全方位发展的工业互联网体系,按理说GE的工业基因应该给Predix提供许多助力,但开发工业云平台和微软、亚马逊等一群IT企业抢生意似乎并不是明智之举。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">此外,Predix原本期望的是打造“工业互联网界的Android“,让用户与ISV(独立软件开发商)通过Predix来实现定制化的行业应用开发,但现实是Predix上的大多数工业软件都是GE自己的工程师开发的。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>换言之,GE并没有通过Predix打造出工业互联网的开发者生态。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>中国工业互联网格局或许是产业正解</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">独立之后的Predix还值得多少期待,依旧需要未来市场的检验,但对比之下起步较晚的中国,已经探索出了适合自身发展的工业互联网模式。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">数字化工厂的实现通常可以分为三步,<strong>第一步是通过物联网设备等方式进行数据的采集,第二步是数据的处理,第三部是工业互联网的先进应用</strong>。相较于Predix大包大揽的思维模式,国内做工业互联网的企业其实在各自的分工上有着十分明确的定位。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">如三一重工旗下的树根互联,选择从设备厂商切入,将众多生产设备产生的数据连入到根云平台上,除了能为设备增加远程控制、故障报警等功能外,还能将掌握的大数据信息,为设备厂商提供指导和帮助。树根互联其实是从根上解决了数据收集的问题。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">而如阿里、腾讯、华为之类的IT企业,主要则是通过搭建底层的IaaS平台,为工业企业提供云平台的服务。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">至于工业互联网的应用,则是一个更为广泛的市场。工业软件的开发者们完全可以通过已经搭建好的工业PaaS平台打造出真正符合市场需求的工业应用,这一部分的市场同样还存在着巨大的机会。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">在拥有着最旺盛的市场需求,和最完备的互联网生态的中国,工业互联网的浪潮才刚刚开始。虽然依旧面对着工业信息化发展不均衡,工业企业两化融合水平发展参差不齐的现状,但在政策扶植和巨头的带动下,整个生态都在向着更好地方向发展。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">Predix给中国工业互联网带来的启示是,数字化转型并非一蹴而就的过程,大包大揽的做法也无法构建出一个良好的生态。或许只有生态圈中的每个企业,努力扮演好自己的角色,大家抱着开放的心态朝着一个目标迈进,才能我国工业互联网的发展更为繁荣。</p><p><br/></p><p><br/></p><p>\r\n				</p>', '131', '/ueditor/files/b49e6d0857832d3da8a77d102743bd4f.png/', '0', '0', '0', '2018-12-19 20:33:48', '0', null);
INSERT INTO article VALUES ('7', '2', '为什么说实体零售商构建流量池是未来竞争刚需?', '实体零售商', '0', '实体零售商', '				(原标题:郭广昌:小心翼翼又屡涉风波 上海首富不是那么好当的)2017年,郭广昌以662亿身家居上海首富之位。不过在精英云集的大上海,“首富不是那么好当的。”一位上海某政府部门工作人员对记者点评道。善把握大势,踏准鼓点1977年,高考制度恢复,郭广昌不用拔猪草,安心读书,于1985年考取了复旦大学哲学系。1992年,郭广昌从复旦大学辞职下海经商,与梁信军一起\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				', '<p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong><span style=\"padding: 0px; margin: 0px; box-sizing: border-box; text-indent: 2em;\">数字化转型</span></strong><br/></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">实体零售的数字化转型已是必然趋势,但多数实体零售商的转型难言成功,转型期的阵痛是实体零售必须付出的代价。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">对多数传统零售企业而言,数字化往往是从POS系统开始的,其主要拥有的是POS系统的交易数据,而用户数据很少,一般来说,获取用户数据的主要方法是会员制,也有一些商家会直接采用手机号、微信号或者微博号等,不管采用何种方法,目的一样,就是为每一个用户都定义一个ID,然后将其消费行为等信息记录在该ID之下,这是最基础的一步。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><br/></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box;\"><img alt=\"ISRE2019 智慧零售展  无人售货展  无人零售  新零售 为什么说实体零售商构建流量池是未来竞争刚需? \" src=\"http://img.iotworld.com.cn/EditorFiles/201812/95ec9926f5fc4d20b7da976ab79b907a.jpg\" style=\"vertical-align: top;\" width=\"348\" height=\"348\"/></p></center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">伴随技术的升级迭代,记录用户ID的方式变得更加多元。目前,一些品牌门店采用了先进的AI技术,利用人脸识别定义用户ID,用户入店,自动成为其会员,用户在店内的相关行为会被记录,大大丰富了可用于挖掘分析的数据信息,但该策略亦有其局限性,因收集的数据信息量非常大,并不适用于所有业态。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">货的数字化,除了进销存系统相关信息外,主要就是商品与用户之间关联情况的记录,这点,传统方法是判断某块区域的热力图,再根据热力图去判断该区域的商品销量与人员流动之间的关系,这只到“面”的程度,尚未精确到“点”。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">精确到“点”就是要知道用户在某商品上的体验与停留时间,被拿起与放下等行为的数据等。以服装为例,如果知道某件商品被用户触摸频率、试穿频率(该功能可通过RFID技术或图像识别技术实现,针对服装行业,RFID技术实现可能更适合),再结合该商品的库存与销量等数据进行连带关联分析,就能知道该商品是否受欢迎以及背后的原因,为后续的相关决策提供有价值的参考信息。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">对场,是线上线下的一体化,信息不对称日渐被消解,因此线上会员与线下会员权益的一致性值得注意。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">运营是场的重心,除了门店实时的销售相关信息统计以外,重要的是将商品的库存、销量、摆放位置、体验次数、顾客停留时间等信息建立一个有机的、关联性的链接,通过对应数据的分析,挖掘出商品畅销与否背后的原因,是产品摆放位置的原因?还是产品本身的外观所致抑或是库存管理等。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>为什么零售企业必须构建自己的流量池?</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">如果零售是一场战争,战争讲究战略与战术,二者配合,方能致胜。零售亦如此。战略是看趋势,定方向,数字化正是未来实体零售“潮水的方向”。这点越早看清并贯彻之越好,对此,始作俑者苏宁是榜样,早早就开始了自己的转型布局,如今,苏宁是线下零售巨头数字化转型做得最好的企业。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><br/></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box;\"><img alt=\"ISRE2019 智慧零售展  无人售货展 无人零售 新零售 为什么说实体零售商构建流量池是未来竞争刚需? 第三届(2019)中国智慧零售数字化博览会\" src=\"http://img.iotworld.com.cn/EditorFiles/201812/b7a46968f99f44ad9bef1a7748b5323b.jpg\" style=\"vertical-align: top;\" width=\"447\" height=\"261\"/></p></center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">长远而言,数据是企业驱动的能源,数字化战略的目的是构建企业自身的数据资源池,其包括用户信息及消费行为数据、商品数据、场景数据,以及商品、场景、用户之间千丝万缕的关联等,这为企业后续的需求挖掘、趋势分析等大数据应用提供基础,这样做的目的当然不是为了单笔的交易,而是让企业具备长期持有一群价值用户的运营和变现的能力。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">资源池的信息越多,越能挖掘与洞悉消费者的需求,运营和变现的潜力便越大,持续满足这个需求,便能持续维持企业长期的生命力。同时,企业生命力越长,资源池内的信息资源便越多,二者相辅相成,此增彼长,相互成全!</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">阿里为什么强大?因为其掌握着中国最为庞大的用户消费相关数据,这些数据就是阿里持续前行的能源与动力,即使有一天淘宝天猫瞬间消失,阿里亦能藉由这些数据迅速构建出新的淘宝天猫。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">谈及企业生命周期,另一生命周期恐怕亦不得不提及,即用户生命周期。以服装为例,品牌往往有它的目标年龄群,如美特斯邦威主要的面向是学生群体,目标群一旦步入职场,用户便可能面临流失,而获新成本高企,这部分流失的用户便是很大的浪费,因此,更大跨度的满足用户需求,甚至满足用户全生命周期需求的策略颇值得考虑。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>新零售与新营销</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">零售的本质是创造流量,并将其变现。流量则有线上线下之分。对多数品牌商而言,线上流量的获取主要通过淘宝、京东之类的平台,这,是要付费的,跟入驻传统线下的购物中心是一样的(除了租金外,线下商场还有名目繁多的收费项目),与这些机构相比,曾经处于强势地位的品牌商如今已是弱者。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">第一个提出新零售概念的是阿里,京东与苏宁则分别提出与之类似的无界零售与智慧零售概念,阿里京东为什么要提出这样的概念并大力鼓吹?大环境是线上流量的渗透率日趋饱和,线下成为新流量的价值洼地,新零售提倡线上线下大融合,达成全渠道的数字化,这,无疑契合了巨头们的未来战略。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">天猫京东这类B2C平台型企业(线下购物中心与之的逻辑相当)的核心是什么?流量!本质是靠经营流量盈利。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">对品牌商,长远来看,要在流量上避免受制于人,自身就需具备连接C端的能力,简单说就是要有自己的独立流量,具备了自己的独立流量,就有了更多与线上京东天猫们、线下天虹岁宝们谈判的筹码,说到底,大家都是流量导向,双方合作,就是“流量的叠加”,彼此共赢!</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">一个明显的趋势是,传统的营销方式如电视、纸媒等在逐渐式微,几乎所有传统渠道的渗透率都在下降,传统营销方式步入死胡同,这背后的原因是目标群获取信息方式的多样化趋势明显,这,拜互联网所赐(包括移动互联网)。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">在国内,互联网经过二十多年的发展,网民整体数量已超8亿,其发展早过了信息泥沙俱下的大合唱时代,微信、微博、今日头条、抖音等媒介的崛起,表明信息的垂直化、细分化、社交化、移动化趋势明显,这为新营销提供了理论支撑与工具。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">网络信息流的垂直细分化、社交化,跟品牌商针对特定人群所主打的生活方式的面向是契合的。品牌商直面用户,目的是最大程度地缩短商品与用户之间的距离(这是很多网红做自己品牌的主因),略去中间商在其间的利益截取,获取自身独立的价值流量。哇哈哈早前就宣布,在未来几年时间内将投入10万台无人零售终端设备的举措正是基于此,类似的还有农夫山泉、可口可乐及旺旺等。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><br/></p><center style=\"color: rgb(43, 43, 43); font-family: &quot;Microsoft YaHei&quot;; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box;\"><img alt=\"ISRE2019 智慧零售展  无人售货展 无人零售 新零售 为什么说实体零售商构建流量池是未来竞争刚需? 第三届(2019)中国智慧零售数字化博览会\" src=\"http://img.iotworld.com.cn/EditorFiles/201812/3c3daadfa57549f9ad7b8022e2d1618e.jpg\" style=\"vertical-align: top;\" width=\"471\" height=\"306\"/></p></center><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">获取独立的价值流量只是其一,更重要的是与用户之间建立点对点的畅通链接,这是大战略!</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">马云近日在重庆智博会上谈到新制造时表示:“新制造必须是制造业和服务业的完美结合,新制造也必须是B2C走向C2B...”。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">以消费者为中心的C2B模式将是未来商业的主流,品牌商与用户之间建立点对点的联系与沟通,目的是直面用户需求,实质是在战略上未雨绸缪,为未来的C2B时代储备“子弹”。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">建立在互联网技术上的新营销成为品牌商崛起的绝佳武器。传统媒介,如门户网站、纸媒及电视等已是明日黄花,泛社交化媒介微信、微博、直播、微视频及社群才是新营销的主阵地,原始人类群居的特性,在新时代下的表现便是拥有共同爱好与相似价值观的人都聚集在自己的领地,这实际上是降低了品牌商获取目标用户的成本。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">对品牌商而言,新营销的套路通常具备一定的相似性,其成功往往容易被复制。诚如小米,其最初只专注于做MIUI系统(一款基于Android的用户界面操作系统),目标群是发烧友(种子用户),这一群体往往对使用体验最为挑剔,待小米获得足够数量的发烧友支持后(黎万强的说法是50万),才真正推出自己的手机......。小米的这一系列打法与套路后来被行业广为借鉴,一定程度上成就了华为荣耀当下的荣耀。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">藉由价值观、爱好或生活方式等理念去迅速影响聚焦目标用户,建立口碑,低成本地完成种子用户的原始积累,种子用户本身就是很好的免费营销者,待种子用户足够规模时,口碑或价值观或爱好或生活方式本身会去寻找它的同僚,所有这些都是建立在互联网技术的基础之上,很难想象,如果没有互联网,是否还会存在江小白、喜茶、鲍师傅之类的当红品牌。因此,新营销成为零售商持续丰富自身流量池的绝佳工具。</p>', '40', '/ueditor/files/87393fa1b7d3729d9714a54d2100f691.png/', '4', '0', '0', '2018-12-19 21:33:57', '0', null);
INSERT INTO article VALUES ('8', '2', '中国云服务企业出海五年的冰与火之歌', '中国云服务企业出海', '0', '云服务', '(原标题:郭广昌:小心翼翼又屡涉风波 上海首富不是那么好当的)2017年,郭广昌以662亿身家居上海首富之位。不过在精英云集的大上海,“首富不是那么好当的。”一位上海某政府部门工作人员对记者点评道。善把握大势,踏准鼓点1977年,高考制度恢复,郭广昌不用拔猪草,安心读书,于1985年考取了复旦大学哲学系。1992年,郭广昌从复旦大学辞职下海经商,与梁信军一起\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				\r\n				', '<p>				</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">彼得·德鲁克在《管理的实践》中提到:企业是经济成长、扩张和改变的具体器官。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">这句话拿来描述中国科技企业的出海再合适不过了。中国互联网在过去几年在国内极度扩张,处于业务拓展、公关需要,出海成了顺理成章的事情。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">消费互联网企业和以云服务为代表的产业互联网引领了出海浪潮。相比较而言,消费互联网的企业出海并没有那么顺畅,他们面对海外市场有点摸不着头脑,并不理解海外市场用户的消费习惯,很多都遭遇了滑铁卢。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">着力B端的云服务企业显得更为扎实靠谱,心态更加成熟,一步一个脚印站稳了海外市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">这5年来,从阿里、腾讯、华为这样的巨头,到SaaS+PaaS领域的垂直细分企业,以及企业级市场云服务市场的佼佼者,中国云服务企业呈现了完整的出海谱系,其中的得失值得今天回味总结。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">三波出海浪潮一个产业是否走向成熟,一个行业是否诞生巨头,出海、开发国际市场是非常核心的特征之一。在2018年前,中国云服务企业出海经历了2波浪潮。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>第1波是2014年以阿里云为代表的IaaS基础云服务商出海。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">短短3年时间,国际市场就形成了所谓的3A(亚马逊AWS、微软Azure、阿里Alibaba Cloud)的市场格局。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">市场研究机构Gartner在今年11月发布了一份全球公共云计算份额报告,报告显示,亚马逊AWS、微软Azure和阿里云继续位居全球市场前三,份额分别为51.8%、13.3%和4.6%。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><span style=\"padding: 0px; margin: 0px; box-sizing: border-box; text-indent: 2em;\">坦率说,阿里云在其中占据的市场份额并不高,并不能构成三足鼎立的说法,但是之所以被称为“3A”是因为,中国企业第一次在云服务这个“哥德巴赫桂冠”上切走了一块蛋糕,这已经足以说明中国云服务在国际市场上的地位。</span></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>第2波,2016年以东软、金蝶为代表的SaaS+PaaS服务商出海。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">这批企业出海,主要原因还是它们大多数是老牌IT解决方案与IT服务供应商,国内长期耕耘,一些企业不管是品牌、服务、产品都已经相对成熟,再随着一带一路的政策号召出海开拓,目的真的是为了获取海外市场,某些企业则是趁此机会浑水摸鱼,借助政策自我公关,炒高股价。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>2018年中国云服务企业再次迎来第3波出海浪潮。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">2016年中国互联网的发展从高速成长期进入成熟期,国内几乎所有企业都在寻求管理升级,企图通过内部流程、管理优化的方式提高效率,一批企业云服务企业崛起,如上上签电子签约、七牛云、涂鸦智能等。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">经过2年验证后,这批企业又集体出海,他们作为细分市场的佼佼者,都开始征战国际市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">像上上签电子签约作为电子签名行业领头羊,今年下半年就开始筹划进军国际市场,并把第一站放在拥有欧洲最大互联网市场的俄罗斯。在中俄贸易额突破1000亿美元的关口,选择在改革开放40周年的历史时刻,与当地电商平台UMKA达成合作,实现中俄电子合同的第一签。七牛云则是通过CDN服务,帮助中国互联网企业出海。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">三波出海浪潮下来,中国云服务企业出海从公有云到行业云再到私有云,从Paas、Iaas再到SaaS,已经有了相对完整的市场覆盖。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">虽然其中鱼龙混杂,但至少已经在国际市场占有一席之地。海外客户在使用中国云服务企业的产品,中国互联网企业也随着中国云服务的保驾护航进入海外市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">冰与火、得与失三波出海浪潮本质上是中国互联网自发成长、中国云服务适应市场以及国家政策驱动的产物。浪潮与浪潮的叠加,往往会塑造一个完整而有层次的市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">“完整”不仅仅意味着企业大小完整,也会意味着中国云服务企业会走过“完整的坑”。有“层次”不仅仅意味着服务的层次清晰,更意味着其中竞争力强的企业可以在市场占据稳定的地位。而一些企业更多是虚火,只能在短时间内利用价格战获得优势,但面对海外市场竞争的复杂性,很难坚持下来。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>三波大潮下来,出海的云服务企业呈现冰与火之歌的态势,其中得失经验值得总结。</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>1、公有云市场三强共舞</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">第一波出海过后,公有云市场已经成为阿里云和腾讯云、华为云三家共舞的独角戏。三家各有优势,阿里云综合实力强、起步早、覆盖广,腾讯云强在视频云优势助力中国游戏出海,华为云借电信硬件设备切入。他们找准了自己的优势,并凭借在电商、游戏、硬件上的绝对影响力在国际市场上攻城拔寨。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">阿里云出海是大家都知道的故事,阿里云为例,已经超越了谷歌,成为了仅次于亚马逊和微软的全球第三大云。电商、支付支撑起了阿里云出海的步伐。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">腾讯云则是伴随着马化腾的产业互联网战略,出征国际市场。随着国内游戏版号控制趋严,中国游戏厂商出海加速,未来更大可能性是,腾讯云在游戏市场帮助中国游戏厂商出海上会放大优势。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">FT中文网曾经刊载过一篇文章,名叫《华为云没有出海》,其中记录过这样一个片段,有记者问到华为云的“出海”布局。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">华为副总裁、云BU总裁郑叶来的回答很幽默:我们成天在“海”里游,还出什么海?</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">的确,华为To B业务收入中,有一半以上来自于海外。云服务本身就是跟华为自身电信业务相伴相随进入海外市场的。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>2、SaaS+PaaS回归理性</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">第二波出海,某种意义上带有一些非理性因素。正如前文所说的,其中有公关因素、有市值考量,也有政策影响。很多时候,和企业自身发展节奏关系不大。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">SaaS+PaaS市场,目前除了东软等老牌厂商出海发展尚可、站稳脚跟,其他已无声音。难点在于三点。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">欧美市场的客户不会因为中国云计算企业的产品降价就购买,有着严格的采购标准;</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">中国企业出海往往容易依旧服务中国企业,在中国企业圈混圈子;</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">市场特殊行规的影响,服务器、零部件在一些国家会有属地限制;</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">成功的企业,或是联合当地巨头,或是苦练内容针对细分市场打造竞争力,生存了下来。失败的企业,很大部分都只是把出海作为一种宣传手段,并没有在营销上、产品上进行突破,甚至有的本土市场都做的不佳。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">中国的SaaS+PaaS云服务企业,甚至有些进入海外市场依旧也还是服务中国企业。这种浪潮不可能长期延续,必然会随着市场空间的缩小而最终偃旗息鼓。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>3、企业云服务的悄然而立</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">第三波出海,企业云服务市场,呈现热火朝天之势。 这一波都是在国内做到了领先,需要在国际市场上寻求新的突破。后方无忧的情况下,弹药充足的厮杀国际市场。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">上上签电子签约就是一个明显的例子。国内市场已经坐稳第一后瞄准国际市场。出海第一站非常务实的选择了近邻俄罗斯。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">选择俄罗斯的原因是,首先是中俄贸易量每年递增,2018年要突破1000亿美元。市场具备非常光明的前景。第二是俄罗斯互联网市场已经成熟,可以实现互联互通 。当地法律也承认电子签名,具备电子签约基础。第三是,俄罗斯企业也在面临供应链升级的痛点,电子签名云服务是刚需。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">在12月19日,莫斯科下午时间5点,俄罗斯本土电商UMKA在莫斯科和上上签电子签约达成战略合作。使用上上签电子签约云平台,与远在万里之外的北京合作方,供应链平台国竞研究院远程签署合作协议。成为中俄企业电子合同第一签。签署协议后,由国竞负责的河北箱包供应链,将从原来的30天左右供应时间,提速到15天左右,能送达到15个俄语国家的消费者手中。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">可以说,这种服务模式是相对比较健康合理的。既有海外企业参与其中,也有中国企业成为服务对象,它容易在相对波动的市场中寻找平衡,保持稳定的营收。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">下个五年的启示第一个五年过去之后,下一个五年即将展开,随着中国互联网行业从消费互联网整体向产业互联网转型,出海只会是更大的潮流。这需要中国企业提前做好准备。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>1、合理利用政策引导进入国外市场</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">一带一路沿线国家基础建设必将带动配套设施和服务市场需求。面对沿线地区和国家IT资源困乏地区,云服务是业务数字化的核心支撑。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><span style=\"padding: 0px; margin: 0px; box-sizing: border-box; text-indent: 2em;\">根据Markets and Markets的新报告,中东和非洲云基础设施服务市场规模将从2018年的28亿美元增长到2023年的47.2亿美元,期间复合年增长率达11%。</span></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">甚至连亚马逊AWS也在打一带一路牌,顺着中国的足迹开拓市场。比如说AWS于2017年12月首次登陆非洲大陆,在南非的开普敦和约翰尼斯堡各设一个新站点。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">一带一路的政策下,开拓海外市场空间,中国企业自然更是拥有红利。当然,也还是需要在政策与市场自由竞争之间保持平衡,不可过于依赖红利,否则会导致企业竞争力削弱。甚至遭到海外市场的排斥。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>2、理解欧美市场的思维方式以及文化理念</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">中国云服务企业进入海外市场尤其善于采用低价竞争获得优势地位。低价竞争虽然可能在一时获得优势,但从长期来看可能会损害客户印象。过于低于成本的低价竞争,在欧美客户严重,很可能是违反市场规则的恶性竞争,甚至有非正当竞争、意图垄断之嫌,往往容易被客户以及竞争对手集体排斥。甚至使得中国企业企业也遭受歧视。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">同时,更需要理解欧美文化伦理在企业经营层面的理念,中国云计算企业可能要花更多精力去适应海外市场的本土化。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\"><strong>3、前期做好调研,找准细分市场和国家</strong></p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">不同市场有不同的情况,欧洲、俄罗斯、东南亚、中亚中东、非洲,都有着不同的市场环境。根据不同国家、不同市场做不同的市场应对策略。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">比如说东南亚是中国游戏厂商的出海重地。像腾讯离职员工创办的沐潼科技就生产了一款名为《无尽对决》的moba类手游,在东南亚市场比《王者荣耀》海外版还要火热。这类中国出海游戏,必然是国内云服务厂商可以服务的对象。此外东南亚的电商环境、支付环境和中国近似,公有云服务、企业云服务都会有很大的空间。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">而在中东、非洲地区,运营商、金融、能源、农业、中小企业的云服务才是当地的重点,SaaS+PaaS云服务在其中有会有成长空间。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">了解清楚不同市场的需求,针对不同细分市场推服务,甚至要考察清楚政局、文化情况再做考量,才能有相对稳定的成长。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">1988年,巴西作家保罗·柯艾略在《炼金术士》曾写下这样一段话:</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">每个人的寻梦过程都是以“新手的运气”为开端,又总是以“远征者的考验”收尾。夜色之浓,莫过于黎明前的黑暗。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">如果说,中国的云服务企业出海更多是中国互联网的崛起这一历史机遇作为依托,那么真正踏入海外市场的那一时刻,才是远征的起点。</p><p style=\"padding: 0px; margin: 0px 0px 20px; box-sizing: border-box; font-size: 16px; color: rgb(43, 43, 43); line-height: 30px; text-indent: 2em; font-family: &quot;Microsoft YaHei&quot;; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-align: start; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;\">出海中间必然会遭遇各式各样的挑战,而这恰恰才是真正成熟的中国云服务企业走向伟大的开端。</p><p>\r\n				</p>', '55', '/static/images/aef75c206d739232342021c01657e432.png', '0', '0', '0', '2018-12-19 21:34:23', '0', null);
INSERT INTO article VALUES ('9', '2', '加速物联网生态建设,予力全球企业转型!!', '物联网生态建设', '网络', '物联网,转型', '今天,世界正变成一台计算机。无处不在的计算把五花八门的传感器和数据连接起来,通过分析数据、发现洞察,创造出了影响人们工作和生活的丰富体验。未来几年,物联网每天产生的数据将多到难以置信。无论是在我们的家里、车里、城市里、工作单位里,还是在从工厂到医院的各个行业,所有的一切都将因来自于物联网的大数据、人工智能而发生改变。在微软看来,在不断推动物联网技术创新的同时\r\n				\r\n				', '<p>				</p><p class=\"x-hidden-focus\">今天,世界正变成一台计算机。无处不在的计算把五花八门的传感器和数据连接起来,通过分析数据、发现洞察,创造出了影响人们工作和生活的丰富体验。未来几年,物联网每天产生的数据将多到难以置信。无论是在我们的家里、车里、城市里、工作单位里,还是在从工厂到医院的各个行业,所有的一切都将因来自于物联网的大数据、人工智能而发生改变。</p><p>在微软看来,在不断推动物联网技术创新的同时,为我们的合作伙伴打造一个让他们充分施展才华的平台,让他们能够更广泛地接触客户并且通过相互合作,加速物联网部署和实施的效率,将蕴藏着巨大的机会。对物联网设计部署而言,硬件产品的功能和服务与合作伙伴的设计实施能力,这两个方面同等重要。因为涉及很多不断变化的情况和元素,在设计物联网方案时,从一开始,就应该明确要求,筛选最佳方案,选择最佳合作伙伴,并对投入产出的期待做出清晰的预判。</p><p>出于这样的考虑,微软希望能融合合作伙伴与解决方案平台,共同满足物联网产业发展的巨大需求。在技术创新上,微软已经推出了从云到端的连贯、完整的产品与服务;为了进一步推动研发和持续的产品创新,微软宣布将在未来四年内,<a href=\"https://www.businessinsider.com/microsoft-is-set-to-pour-5-billion-into-the-iot-2018-4\">投资 50 亿美元</a>于物联网技术和生态系统的创新与发展。其中的部分投入将用于加速物联网合作伙伴生态系统的建设,真正让物联网的落地应用帮助企业实现业务转型、创新,并完成更快速的部署。</p><p><strong>数字化转型中的物联网机遇</strong></p><p>由云计算、大数据、物联网和人工智能等技术所驱动的数字化转型正为整个物联网生态系统带来巨大的发展机遇。微软始终致力于与合作伙伴生态携手,构思和打造智能的物联网解决方案,助力企业充分利用技术创新,赢得数字化转型的机遇。</p><p>中国领先的城乡建设与生活服务商<strong>万科集团</strong>正携手微软打造涉及智慧家居、智慧物流及更多智能服务的合作平台。目前,万科集团已经利用 Azure IoT Hub 等人工智能服务打造了一系列智能解决方案。</p><p>在 2018 年微软 Build 开发者大会上,全球民用无人机及影像技术领导厂商<strong>大疆创新</strong>(<strong>DJI)</strong>与微软公司达成战略合作,以面向 Windows 的软件开发工具包(SDK)和 Azure IoT Edge 服务,打造出先进的人工智能与机器学习能力,帮助用户更好地驾驭商用无人机,并充分发掘出智能边缘云计算在行业应用中的无限潜力。</p><p>专注于零售和风力发电行业的全球领先的计算机视觉企业<strong>扩博智能(Clobotics)</strong>,致力于将 Azure IoT Edge、计算机视觉、人工智能和机器学习技术,结合到自主飞行的无人机及其它物联网设备中,打造智能的行业解决方案。搭载扩博智能解决方案的无人机能提供高达95%的机器识别精准度,可将风力发电机叶片检查的效率提升高达 10 倍。</p><p><strong>物联网生态系统创新的关键:合作伙伴与解决方案</strong></p><p>要真正推动客户的物联网应用和业务转型,合作伙伴之间的广泛协作是必不可少的。因此,微软致力于在合作伙伴生态系统中建立合作伙伴之间的广泛支持,共同创造成功的应用。</p><p>在具体实践中,我们采用了合作伙伴匹配模式,以某一合作伙伴的专业能力为核心,以其他合作伙伴作为助力,在共同服务客户、打造解决方案的过程中,拓展业务机遇。打破彼此间的相互隔阂,专注于发挥出每个合作伙伴的最大优势,是这个协作生态系统的关键。</p><p>与此同时,<a href=\"http://www.azureiotsolutions.com/\">解决方案加速器</a>是推动物联网生态系统创新的另一个重要举措。开源、预配置的解决方案加速器将帮助合作伙伴更快捷地开发出适用于不同垂直行业或者应用场景的物联网解决方案。目前微软提供的第一方解决方案包括,<strong>远程监控、互联工厂、预测性维护、设备模拟</strong>等。合作伙伴和客户在此基础上进一步开发自己的方案,能够尽可能降低风险、减少开发成本,并更高效地利用资源,从而让合作伙伴将更多精力集中于战略创新。</p><p>与此同时,微软合作伙伴也创造出了第三方的开源解决方案加速器,包括分别用于资产追踪的<strong>英特尔互联物流平台</strong>,有用来进行能源管理的<strong>边缘功率分析</strong>、以及<strong>数字标识方案</strong>等,目前这三个解决方案加速器已经开启预览,并帮助企业用户构建自己的物联网方案并降低开发成本。</p><p>物联网生态系统创新的第三个部分是解决方案聚合器。这是一些有独立整合能力的合作伙伴,他们可以将其他合作伙伴的组件、服务和解决方案按照需要整合起来,作为端到端的解决方案推向市场。Avnet、Synnex\r\n 等在渠道分发方面有深入专业积累的企业,非常善于将这些资源整合起来,构建起商业物联网服务。</p><p>客户永远希望以最短的时间实现最大价值,而这正是我们以物联网创新推动企业转型的最大成果。合作伙伴积极拥抱业务模式转型,就能给客户带来更大价值。利用解决方案加速器和解决方案聚合器,利用通用架构框架开发可复制的解决方案,能够帮助减少多达\r\n \r\n80%的开发工作。与优势互补的合作伙伴共同努力,将带来更快的开发速度、更灵活的规模扩展,以及更加深入的专业服务能力。这不但能让客户更快地得到物联网方案,实现快速部署运行,还将提升方案的投入产出比,并切实提升盈利能力。</p><p class=\"x-hidden-focus\">微软的优势不仅在于领先业界的技术创新,更在于微软始终致力于不断降低物联网技术的复杂度,并全力提升部署的效率和速度。这些优势,将帮助微软不断为合作伙伴和客户创造最大价值。</p><p><br/></p><p>\r\n				</p>', '16', '/ueditor/files/4701fd5dbf6f42381322003c21bd7cfd.jpg/', '4', '0', '-1', '2018-12-23 20:11:04', '1', null);

2.模型文件models.py内容

#定义文章开始
class Articles(db.Model):
    __tablename__ = 'article'
    aid = db.Column(db.Integer,primary_key=True,autoincrement=True)  # 分类ID
    cat_id = db.Column(db.Integer, db.ForeignKey("article_category.cat_id"))  # 分类ID
    title = db.Column(db.String(255), nullable=False)  # 文章标题,nullable=false是这个字段在保存时必需有值
    shorttitle=db.Column(db.String(255),nullable=True)#短标题可以为空
    source = db.Column(db.String(64), nullable=False)  # 文章来源
    keywords=db.Column(db.String(64),nullable=False)#关键字不能为空
    description = db.Column(db.String(512), nullable=False)  # 文章摘要
    body = db.Column(db.Text, nullable=False)  # 文章内容
    clicks = db.Column(db.Integer, default=0)  # 浏览量
    picture = db.Column(db.String(255))  # 文章列表图片路径
    author_id = db.Column(db.Integer, db.ForeignKey("user.uid"))  # 当前文章的作者id
    allowcomments=db.Column(db.Integer,default=0)#是否允许评论
    status = db.Column(db.Integer, default=0)  # 当前文章状态 如果为0代表审核通过,1代表审核中,-1代表审核不通过
    create_time=db.Column(db.DateTime,default=datetime.now)#文章添加时间
    is_delete=db.Column(db.Boolean,default=0)#删除标志
    flag=db.Column(db.Boolean,default=0)
    tags = db.relationship('Articles_Tag', secondary=article_tag, backref=db.backref('articles'))

3.蓝图部分view.py

@bp.route("/article_list", methods=['GET','POST'])
def article_list():
    if request.method=='GET':
        rows=db.session.query(Articles).filter(Articles.is_delete==0).all()
        #获取总的记录
        # total1=db.session.execute('select count(*) from jq_article where status=0').first()
        total=db.session.query(func.count(Articles.aid)).filter(Articles.is_delete==0).scalar()
        #新增分页
        per_page = 4  # 每一页显示条数
        page = request.args.get('page')
        if not page:
            page = 1
        else:
            page = int(page)
        paginate = Articles.query.filter(Articles.is_delete == 0).order_by(Articles.aid.desc()).paginate(page, per_page, False)
        news1 = paginate.items
        return render_template('admin/articles/index.html',title='新闻资讯',paginate=paginate)

4.页面部分articles\index.html

{% extends "admin/app.html" %}
{% import "_macros.html" as macros %}
{% block css %}
<link rel="stylesheet" href="/static/assets/css/gtjcommon.css">
{% endblock %}
{% block content %}
    {% include "admin/_flash.html" %}
<!-- content start -->
  <div class="admin-content">
    <div class="admin-content-body">

      <div class="am-cf am-padding">
        <div class="am-fl am-cf"><strong class="am-text-primary am-text-lg">首页</strong> / {
   
   {title}}</div>
      </div>
      <div id="1" style="height:50px;margin-top: 10px;margin-left: 20px;">
        <p><b>Ewangda--创新设计专家,软件技术服务,外包项目承接,软件技术合作与技术转让.</b></p>
          <p><b>    欢迎来电:13701601226 阿桂天山 </b></p>
      </div>
      <hr>
      <!-- content main start-->
      <div class="am-g">
        <div class="am-u-sm-12 am-u-md-6">
          <div class="am-btn-toolbar">
            <div class="am-btn-group am-btn-group-xs">
              <button type="button" class="am-btn am-btn-default"><span class="am-icon-plus"></span> 新增</button>
              <button type="button" class="am-btn am-btn-default"><span class="am-icon-save"></span> 保存</button>
              <button type="button" class="am-btn am-btn-default"><span class="am-icon-archive"></span> 审核</button>
              <button type="button" class="am-btn am-btn-default"><span class="am-icon-trash-o"></span> 删除</button>
            </div>
          </div>
        </div>
        <div class="am-u-sm-12 am-u-md-3">
          <div class="am-form-group">
            <select data-am-selected="{btnSize: 'sm'}">
              <option value="option1">所有类别</option>
              <option value="option2">IT业界</option>
              <option value="option3">数码产品</option>
              <option value="option3">笔记本电脑</option>
              <option value="option3">平板电脑</option>
              <option value="option3">只能手机</option>
              <option value="option3">超极本</option>
            </select>
          </div>
        </div>
        <div class="am-u-sm-12 am-u-md-3">
          <div class="am-input-group am-input-group-sm">
            <input type="text" class="am-form-field">
          <span class="am-input-group-btn">
            <button class="am-btn am-btn-default" type="button">搜索</button>
          </span>
          </div>
        </div>
      </div>

      <div class="am-g">
        <div class="am-u-sm-12">
          <form class="am-form">
            <table class="am-table am-table-striped am-table-hover table-main">
			<thead>

                <tr>
                  <th class="table-check"><input type="checkbox" name="" value=""/></th>
                  <th class="table-id">ID</th>
                  <th class="table-title">标题</th>
                  <th class="table-type">分类</th>
                  <th class="table-from">来源</th>
                  <th class="table-updatetime">更新时间</th>
                  <th class="table-count">浏览次数</th>
                  <th class="table-state am-hide-sm-only">发布状态</th>
                  <th class="table-set">操作</th>
                </tr>

			</thead>
			<tbody>
             {% if news1 %}
                       {% for row in news1 %}



				<tr class="text-c">
					<td><input type="checkbox" value="{
   
   { row.aid }}" name="smallBox" id="smallBox"></td>
					<td>{
   
   { row.aid }}</td>
					<td class="text-l">
					<a href="/article_details/{
   
   { row.aid }}" target="_blank">{
   
   { row.title }}</a>


					</td>
					<td>新闻资讯</td>
					<td>Ewangda</td>
					<td>{
   
   { row.create_time }}</td>
					<td>{
   
   { row.clicks }}</td>
					<td class="td-status">
					{% if row.status==0 %}
					<span class="label label-success radius">已发布</span>
					{% else %}
					<span class="label label-defaunt radius">已下架</span>
					{% endif %}
					</td>

                    <td>
                      <div class="am-btn-toolbar">
                        <div class="am-btn-group am-btn-group-xs">
                          <button class="am-btn am-btn-default am-btn-xs am-text-secondary" onclick="article_edit('编辑文章','/admin/article_edit/{
   
   { row.aid }}','800','500')"><span class="am-icon-pencil-square-o"></span> 编辑</button>
                          {% if row.status==0 %}
					<button class="am-btn am-btn-default am-btn-xs am-hide-sm-only"><span class="am-icon-copy"></span><a style="text-decoration:none" onClick="article_stop(this,'{
   
   { row.aid }}')" href="javascript:;" title="下架"><i class="Hui-iconfont">下架</i></a></button>
					{% else %}
					<button class="am-btn am-btn-default am-btn-xs am-hide-sm-only"><span class="am-icon-copy"></span><a style="text-decoration:none" onClick="article_start(this,'{
   
   { row.aid }}')" href="javascript:;" title="发布"><i class="Hui-iconfont">发布</i></a></button>
					{% endif %}

                          <button class="am-btn am-btn-default am-btn-xs am-text-danger am-hide-sm-only" onClick="article_del(this,'{
   
   { row.aid }}')><span class="am-icon-trash-o"></span> 删除</button>
                        </div>
                      </div>
                    </td>
				</tr>
                 {% endfor %}
				{% endif %}
			</tbody>
		</table>
    <!--_分页开始-->
        <div class="am-cf">
            <span>页码: <span style="color: #00baaa;">{
   
   { paginate.page }}/{
   
   { paginate.pages }}</span>
                每页: <span style="color: #00baaa;">{
   
   { paginate.per_page }}</span> 条记录
                共: <span style="color: #00baaa;">{
   
   { paginate.total }}</span> 条记录</span>
              <div class="am-fr">
                {%if paginate%}
                        {
   
   { macros.pagination_widget(paginate, '.article_list') }}
                {% endif %}
              </div>
        </div>
    <!--_分页结束-->


          </form>
        </div>
        <!-- content main end-->


    </div>
    {% include "admin/footer.html" %}
  </div>
  <!-- content end -->

{% endblock %}


{% block js %}

{% endblock %}

以上代码最重要的是分页部分:包括分页的引入和应用:

 

 5.最后建立分页的宏文件templates\_macros.html

{% macro pagination_widget(pagination, endpoint) %}
<!--Ewangda 通过采用flask_paginate对amazeUI实现的分页部分-->
<ul class="am-pagination">
    <li{% if not pagination.has_prev %} class="disabled"{% endif %}>
        <a href="{% if pagination.has_prev %}{
   
   { url_for(endpoint,page = pagination.page - 1, **kwargs) }}
        {% else %}#{% endif %}">&laquo;
        </a>
    </li>
    {% for p in pagination.iter_pages() %}
        {% if p %}
            {% if p == pagination.page %}
                <li class="active">
                    <a href="{
   
   { url_for(endpoint, page = p, **kwargs) }}">{
   
   { p }}</a>
                </li>
            {% else %}
            <li>
                <a href="{
   
   { url_for(endpoint, page = p, **kwargs) }}">{
   
   { p }}</a>
            </li>
            {% endif %}
        {% else %}
        <li class="disabled">
            <a href="#">&hellip;</a>
        </li>
        {% endif %}
    {% endfor %}
    <li{% if not pagination.has_next %} class="disabled"{% endif %}>
        <a href="{% if pagination.has_next %}{
   
   { url_for(endpoint,page = pagination.page + 1, **kwargs) }}{% else %}#{% endif %}">&raquo;</a>
    </li>
</ul>
{% endmacro %}

总结:希望这个小技术对你有所帮助

猜你喜欢

转载自blog.csdn.net/gui818/article/details/127384486