# portal 资讯模块儿的API 的配置
```
//设置域名
const SERVERURL = "http://xxx.xxx.xxx.xxx/";
//专用远程调试图片所用,有时候图片调试就没有了,因此加了这个变量
const SERVERIMGURL = "http://xxx.xxx.xxx/";
var Config = { };
/*路由地址*/
Config.api = {
//文章分类
Portal_Terms : SERVERURL + "index.php?g=Portal&m=Api&a=getTermsById",
//文章列表
Portal_List : SERVERURL + "index.php?g=Portal&m=Api&a=getArticleByTermsId",
//文章内容
Portal_Article : SERVERURL + "index.php?g=Portal&m=Api&a=articleCon",
//最新活动
Portal_Article_New : SERVERURL + "index.php?g=Portal&m=Api&a=getArticles",
//获取指定文章下的评论
User_Article_Comment : SERVERURL + "index.php?g=Portal&m=Api&a=getCommentById",
//获取指定文章下提交评论
User_Article_Comment_Submit : SERVERURL + "index.php?g=Portal&m=Api&a=comment_submit",
//收藏某一篇文章
User_Article_Collect : SERVERURL + "index.php?g=Portal&m=Api&a=collectArticle",
//取消收藏某一篇文章
User_Article_Cancel_Collect : SERVERURL + "index.php?g=Portal&m=Api&a=cancelCollectArticle",
//收藏状态
User_Article_Collect_Status : SERVERURL + "index.php?g=Portal&m=Api&a=collectStatus",
//单页列表
Portal_Page_List : SERVERURL + "index.php?g=Portal&m=Api&a=portal_page",
//单页内容
Portal_Page_Content : SERVERURL + "index.php?g=Portal&m=Api&a=portal_page_article",
};
```