我的图片不显示,只显示图片两个字。
来源:5-4 网易新闻前台
慕的地7209688
2018-09-01
看了有人问了相同的问题,可是这个连图片前面的那个绿色的标记都没有。请问哪里出了问题,代码都对过了没问题。
这是navicat中写的内容:
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(200) NOT NULL,
`image` varchar(200) NOT NULL,
`content` varchar(2000) NOT NULL,
`is_valid` tinyint(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`types` varchar(200) DEFAULT '百家',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('朝鲜特种部队视频公布 展示士兵身体素质与意志', '/static/img/news/01.png', '新闻内容', 1, now(), '推荐');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('男子长得像\"祁同伟\"挨打 打人者:为何加害检察官', '/static/img/news/02.png', '新闻内容', 1, now(), '百家');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('导弹来袭怎么办?日本政府呼吁国民躲入地下通道', '/static/img/news/03.png', '新闻内容', 1, now(), '本地');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('美媒:朝在建能发射3发以上导弹的3000吨级新潜艇', '/static/img/news/04.png', '新闻内容', 1, now(), '推荐');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('证监会:前发审委员冯小树违法买卖股票被罚4.99亿', '/static/img/news/08.png', '新闻内容', 1, now(), '百家');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('外交部回应安倍参拜靖国神社:同军国主义划清界限', '/static/img/news/new1.jpg', '新闻内容', 1, now(), '推荐');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('外交部回应安倍参拜靖国神社:同军国主义划清界限', '/static/img/news/new1.jpg', '新闻内容', 1, now(), '百家');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('\"萨德\"供地违法?韩民众联名起诉要求撤回供地', '/static/img/news/new1.jpg', '新闻内容', 1, now(), '百家');
INSERT INTO `news` (`title`, `image`, `content`, `is_valid`, `created_at`, `types`) VALUES ('只有十五岁的涛妹', 'xxx.jpg', 'cc', 0, now(), '本地');
而且在下载源代码的时候,我发现flask_news文件夹里没有JS这个文件,老师视频上有的。
2回答
-
Jelly3267872
2019-08-19
请问为什么这个网页没有被css修饰呢? 我是运行的整个项目文件啊00 -
NavCat
2018-09-01
你检查下项目目录中的/static/img/news/目录下有没有对应的图片
082018-09-03
Python操作三大主流数据库-MySQL+MongoDB+Redis
2024 学习 · 376 问题
相似问题