将userinfo传递给NodeJs

时间:2017-03-14 18:05:13

标签: javascript angularjs node.js

我有一个将值传递给NodeJS的Angular表单。我可以发布表单中的值。我还想将登录的用户信息发送到NodeJS。

我的表格:

<form>
<input type="text" placeholder="title" ng-model="post.title">
<input type="text" placeholder="category" ng-model="post.category">
<input type="submit" ng-click="newpost(post)">Post
</form>

Angular:

var user = $cookies.get('user');
$scope.post = function(post){
    $http.post('/newpost', post).then ...
}

如何将用户信息与post一起传递给NodeJS?

感谢。

1 个答案:

答案 0 :(得分:0)

发布用户信息以及发布对象,您可以在帖子对象中添加用户键。

示例:

var user = $cookies.get('user');

 $scope.post = function(post){

    post.username = user.username;
    post.email = user.email

    $http.post('/newpost', post)
    .then(){}
    .catch(){}
 }