javascript – Thymeleaf值发送angularJS ng-onclick方法

前端之家收集整理的这篇文章主要介绍了javascript – Thymeleaf值发送angularJS ng-onclick方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的问题是thymeleaf与angularJS的整合.我有这个thymleaf页面

我的AngularJS方法:

app.controller('ctrlsubcomment',function($scope,$http) {
    $scope.newssubcomment = {
        mainComment: { id : ""},comment: {text: ""}
    };

    $scope.addSubComment = function(commentId) {
        $scope.newssubcomment.mainComment.id = commentId;
        alert("helllo comment : "+commentId +" " + $scope.newssubcomment.mainComment.id);
    };
} 

我的代码不起作用.我有AngularJS语法错误:

“Error: Syntax Error: Token ‘{‘ is unexpected,expecting []] at column 17 of the expression [addSubComment([${newsComment.comment.id}])] starting at [{newsComment.comment.id}])].

最佳答案
我挖了所有互联网然后找到了解决方案.

th:attr="ng-click='addSubComment(\''+${newsComment.comment.id}+'\');'" 

引用:
http://www.mattheye.com/passing-data-between-spring-mvc-and-angularjs/

原文链接:/spring/431917.html

猜你在找的Spring相关文章