我的任务是使用AngularJS在html页面中显示一个简单的属性文件。 属性文件看起来像这样:
#
键1 =值
键2 =值
哈希“#”符号表示属性文件中带注释的行
我正在读取文件内容并将其作为我的REST API中的字符串返回。
@GET
@Path("/showFile")
@Produces(MediaType.APPLICATION_JSON)
public String showFile() {
/*some logic */
return content;
}
我的Angular代码是
$scope.getFile = function() {
$http.get("service/showFile").success(function(content) {
$scope.fileContent = content;
console.log(content);
console.log("Scope variable\n"+$scope.fileContent);
});
我从服务中正确获取文件内容,但在使用散列“#”符号解析行时,我得到了意外的令牌错误。请建议解决方法来解析'#'。