A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 谷粒姐姐 于 2018-9-4 11:53 编辑

2.1.1 广告类目选择
将 contentCategoryService 引入 contentController 在 content.html 引入 contentCategoryService.js 在 contentController.js 中添加代码
[AppleScript] 纯文本查看 复制代码
//加载广告分类列表

$scope.findContentCategoryList=function(){ contentCategoryService.findAll().success(
function(response){

$scope.contentCategoryList=response;

}

);

}
content.html 初始化调用此方法
<
body
class="hold-transition
skin-red
sidebar-mini"
ng-app="pinyougou"
[AppleScript] 纯文本查看 复制代码
ng-controller="contentController"  ng-init="findContentCategoryList()">
2.1.1 广告状态
修改 content.html
网站首页-广告展示
3.1 需求分析
修改首页,当其轮播广告图根据后台设置的广告列表动态产生。
3.2 准备工作
3.2.1 工程搭建
创建 war 模块 pinyougou-portal-web ,此工程为网站前台的入口,参照其它 war 模块编写配置文件。不需要添加 SpringSecurity 框架
pom.xml 中配置 tomcat 启动端口为 9103
3.1.1 前端
(1)拷贝资源:资源文件夹中 “前台页面”目录下的 index.html 以及相关目录拷贝到
pinyougou-portal-web
(2)添加 angularJS 库

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马