gpt4 book ai didi

javascript - gulp-ng-annoate 出错,由于解析错误而无法处理源代码

转载 作者:行者123 更新时间:2023-12-03 10:17:08 25 4
gpt4 key购买 nike

我遇到了 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 的文件

模块.js

angular.module('app', [])

posts.ctrl.js

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
})
})

posts.svc.js

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com