NODEJS實戰微博評論05 前台呼叫後台介面

2021-08-30 21:46:41 字數 1412 閱讀 1498

根據上節課編寫的介面文件, 在index.js 呼叫相應介面

1.先編寫index.html

用法:ng-submit="expression"  若expression值為true,則提交,若expression值為false,則不提交

用ng-repeat 將$scope.comments迴圈出來

3)頁碼展示

後台介面get_page_count返回的pages為number,而ng-repeat只能迴圈 / {},因此建立$scope.pages= ,其長度為pages,用$scope.pages迴圈建立頁碼

index.html **如下

注:form**裡要提交的內容一定要有name屬性,以便req.body.name 獲取內容

暫無資料}}

點讚:}

踩:}

}

2.編寫index.js

$scope.pages = ; // 總頁數

$scope.activeid = 1; // 當前頁數

getpagecount();

getpage(1);

$scope.getpagecount = getpagecount;

$scope.getpage = getpage;

$scope.inclike = function (id, index)

}).success(function (res) ).error(function (err) )

}$scope.incunlike = function (id, index)

}).success(function (res) ).error(function (err) )

}function getpage(page)

}).success(function (res) ).error(function (err) )

}function getpagecount() ,所以用迴圈建立乙個總頁數長度的陣列

最後在 index.css 中加點樣式

html 

.comment-item

.page-item

.page-item.active,

.page-item:hover

此專案在github 上位址為 

預告 :下一課程 todomvc 用 vuejs 和 node 實現

微博評論的情感分析

文字處理 情感分析,文字相似度,文字分類 tf idf逆文件頻率 nlp 字串 向量化 貝葉斯訓練 測試 文字相似度 詞頻 文字分類 tf idf 詞頻 逆文件頻率 1.原始文字 2.分詞 3.詞行歸一化 4.去除停用詞 import os,re import numpy as np import ...

NodeJS爬蟲微博熱搜

demo.js npm install express 安裝依賴 引入express const express require express express get index function req,res listen 8081 function 請求我們要爬取的頁面 npm instal...

實戰新浪微博 騰訊微博的分享功能

算上也是半年前做的,今天翻出來放出來,作為日誌記錄,也許能幫助一些人。我做的大概介面是如下圖。呵呵,上面這些都是些預備工作。下面正式開發。以上就是工程上設定。下面具體 以下處理sina的相關 以下是處理sina的授權驗證函式,qq的未寫。void removeauthdata bool islogg...