作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了 gulp-ng-annoate 生成的错误问题。
错误消息是
Error: app.js: error: couldn't process source due to parse error
我发现另一个线程似乎与我有同样的问题,但该答案对我不起作用。 the other thread
这是我的 gulp 文件和我尝试执行任务的文件。
gulpfile.js
var gulp = require('gulp')
var concat = require('gulp-concat')
//var uglify = require('gulp-uglify')
var ngAnnotate = require('gulp-ng-annotate')
gulp.task('js', function(){
gulp.src(['ng/module.js', 'ng/**/*.js'])
.pipe(concat('app.js'))
.pipe(ngAnnotate())
//.pipe(uglify())
.pipe(gulp.dest('assets'))
})
以及我尝试 concat/ngAnnotate 的文件
angular.module('app', [])
angular.module('app')
.controller('PostCtrl', function($scope, PostsSvc){
$scope.addPost = function(){
if ($scope.postBody){
PostsSvc.create({
username: 'dickeyxxx',
body: $scope.postBody
}).success(function(post){
$scope.posts.unshift(post)
$scope.postBody = null
})
}
}
PostsSvc.fetch().success(function(posts){
$scope.posts = posts
})
})
angular.module('app')
.service('PostsSvc', ['$http', function ($http){
this.fetch = function(){
return $http.get('/api/posts')
}
this.create = function(post){
return $http.post('/api/posts', post)
}
}])
可能出了什么问题..?
最佳答案
错误的是你用 .
而不是 ,
来分隔对象。
另外,不要忘记 ;
来结束你的行。
关于javascript - gulp-ng-annoate 出错,由于解析错误而无法处理源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29816958/
我遇到了 gulp-ng-annoate 生成的错误问题。 错误消息是 Error: app.js: error: couldn't process source due to parse error
我是一名优秀的程序员,十分优秀!