文章标题

来源:互联网 发布:ecs绑定域名 编辑:程序博客网 时间:2024/06/07 17:13

抓取网易新闻的接口,用代理服务器解决跨域,在前端页面上展示。

需要的文件有:

index.html,app.js,

headLine.html,headlineController.js,

detail.html,detailController.js,

引入js文件:angular.js和angular-route.js,

服务器:nodePost.js。

index.html内容,主界面显示,引入需要的文件

<!DOCTYPE html><html ng-app="myApp">    <head>        <meta charset="UTF-8">        <title>网易新闻小案例</title>    </head>    <body>        <ng-view></ng-view>    </body>    <script src="../code/angular.js" type="text/javascript"></script>    <script src="../code/angular-route.js" type="text/javascript" charset="utf-8"></script>    <script src="js/app.js" type="text/javascript" charset="utf-8"></script>    <script src="js/headlineController.js" type="text/javascript" charset="utf-8"></script>    <script src="js/detailController.js" type="text/javascript" charset="utf-8"></script></html>
0 0
原创粉丝点击