我使用angularjs和parse.com制作app app rest。
每一件事都很完美,但是什么时候构建"随着grunt我在uglify任务上有错误。
代码:
service.create(token,{
tipo:$scope.datos.tipo,
raza:$scope.datos.raza,
title:$scope.datos.titulo,
descrip:$scope.datos.descrip,
contact:$scope.datos.contact,
ACL: {
[userid] : { "read": true, "write": true }, // <-- error on variable
"*" : {"read": true}
}
})
我如何解决这个问题?感谢
答案 0 :(得分:0)
这些方括号是你的问题,它的语法无效,除非你使用的是ES6,而uglify还没有ES6支持。