1

我想使用 Angular js 在 WP-API 中为 wordpress 的帖子添加新评论。这是我的功能:

WPService.setComment = function(comment) {
    var data = [
        {
            'author_email'  : comment.email,
            'author_name'   : comment.name,
            'author_url'    : comment.url,
            'content'       : comment.body,
            'post'          : comment.post
        }
    ];
    return $http.post('wp-json/wp/v2/comments', data[0]).success(function(res, status, header) {
        console.log('comment posted...!');
    }).error(function(err) {
        console.error(err);
    });
}

但它不能正常工作。如何以这种方式添加新评论?

UPD #1似乎 angular 无法进入错误块并在此之前返回错误。这些是错误:

SyntaxError: Unexpected token <
at Object.parse (native)
at fromJson (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:1271:14)
at defaultHttpResponseTransform (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:9460:16)
at http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:9551:12
at forEach (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:340:20)
at transformData (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:9550:3)
at transformResponse (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:10319:21)
at processQueue (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:14792:28)
at http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:14808:27
at Scope.$eval (http://localhost/wordpress/wp-content/themes/theme1/bower_components/angular/angular.js?ver=4.4.2:16052:28)
4

1 回答 1

1

由于WP-API 的 github 问题页面,这是一个错误,将在 2.0 beta 13 版本中解决。对于下一个 beta 版本之前的临时解决方案,我们可以应用插件文件中的80dcacf提交。class-wp-rest-comments-controller.php

于 2016-02-13T13:11:46.807 回答