私は初心者です。私はプロジェクトを行うためにVS 2015 Update 3を使用しています。そのプロジェクトでは、TypeScriptを使って書かれたいくつかのサービスクラスとコントローラクラスがあります。私はgulpを使って、.tsファイルに変換された角度のあるjsファイルを並べ替え、連結し、醜くする。ここではサービスとコントローラファイルの順序が重要なので、それらのファイルを連結する前に "gulp-angular-filesort"レシピを使用します。私は2つのバージョンを試します。バージョン1の場合gulp uglifyと明示的なjsファイル名とワイルドカードのもの
(タスクが「分:appcompExp」と命名された以下のコードを参照。)、私はgulpfile.jsファイルで明示的に順序でのjsファイルを一覧表示し、結果、縮小さ(分)ファイルが動作していますプロジェクトを実行するときに問題はありません。バージョン2の場合
(タスクが「分:appcompExp2」と命名された以下のコードを参照してください。)、私はgulpfile.jsでコードを短絡させるためのSOURCEのjsファイル名を一覧表示するためにワイルドカードを使用します。ただし、結果のminified(min)ファイルが作成されますが、プロジェクトを実行すると機能しません。このエラーは、依存性注入の問題のようです:このバージョンの結果のminファイルには、すべてのサービスクラスとコントローラークラスが含まれていますが、コントローラは対応するサービスDIを見つけることができません。誰かが理由を説明していただけます
Error: $injector:unpr
Unknown Provider
Unknown provider: ContactSrvcProvider <- ContactSrvc <- ContactCtrl
:私は(「飲み込む-角度-filesortレコードを」)ngularFilesortは=必要と使用していますが、それはがぶ飲みを使用してバージョン2の一つの具体的なDIエラー
バージョン2のためには役立ちません。 SOURCE jsファイル名にワイルドカードを使用すると、gulpが機能しません。
/*
This file in the main entry point for defining Gulp tasks and using Gulp plugins.
Click here to learn more. http://go.microsoft.com/fwlink/?LinkId=518007
*/
var gulp = require("gulp"),
inject = require("gulp-inject"),
concat = require("gulp-concat"),
print = require("gulp-print"),
angularFilesort = require("gulp-angular-filesort"),
uglify = require("gulp-uglify"),
rimraf = require("rimraf");
// concatenated/bundled files
// vendor js scripts
var pathsCssSrc = "./bower_components/bootstrap/dist/css/*.min.css";
var pathsNglibSrc = [
"./bower_components/angular/angular.min.js",
"./bower_components/angular-route/angular-route.min.js",
"./bower_components/jquery/dist/jquery.min.js", // must before "bootstrap.min.js"
"./bower_components/bootstrap/dist/js/bootstrap.min.js"
];
var pathsAppmoduleSrc = [
"./app/app.js",
"./app/Constants/Constants.js",
"./app/routes.js",
"./app/models/*.js"
];
// destinations
var pathsDest = { build: ".build/", subspa : "spa/", indexfile : "./index.html" };
pathsDest.cssDest = pathsDest.build + "css/appStyles.min.css";
pathsDest.nglibDest = pathsDest.build + "nglib/nglib.min.js";
pathsDest.appModuleDest = pathsDest.build + pathsDest.subspa + "app.min.js";
// tasks
....
////// services, controllers
gulp.task("min:appcompExp", function() {
// I explictly list ALL of js file names and their orders of js file names are important.
// The resulted min js file working when I run my project.
var target = gulp.src(pathsDest.indexfile); // important: root folder must be specified before file name "index.html"
var comp = gulp.src([ "app/services/SessionSrvc.js",
"app/services/UtilSrvc.js",
"app/services/BaseSrvc.js",
"app/services/ContactSrvc.js",
"app/services/AvatarSrvc.js",
"app/services/LoginSrvc.js",
"app/services/RegisterSrvc.js",
"app/services/presidentsSrvc.js",
"app/controllers/BaseCtrl.js",
"app/controllers/LoginCtrl.js",
"app/controllers/LogoutCtrl.js",
"app/controllers/RegisterCtrl.js",
"app/controllers/PresidentCtrl.js",
"app/controllers/PresidentDetailCtrl.js",
"app/controllers/ContactCtrl.js",
"app/controllers/AvatarCtrl.js"]);
var dest = ".build/spa/appcomp.min.js";
return target
.pipe(inject(comp
.pipe(print())
.pipe(concat(dest))
.pipe(angularFilesort())
.pipe(uglify()) // Minifies the concatenated js file.
.pipe(gulp.dest(".")) // important: otherwise there is no files stored
, { name: "appcomp" }))
.pipe(gulp.dest("./")); // important: root folder must be specified like so
});
////////////////////////////
gulp.task("min:appcompExp2", function() {
// using wild cards for SOURCE js codes for shorting codes
// I got runtime error when running my project: DI problem - controllers cannot find their service classes.
var target = gulp.src(pathsDest.indexfile); // important: root folder must be specified before file name "index.html"
var comp = gulp.src(["app/services/*.js",
"app/controllers/*.js"]);
var dest = ".build/spa/appcomp.min.js";
return target
.pipe(inject(comp
.pipe(print())
.pipe(concat(dest))
.pipe(angularFilesort()) // this does not help though
.pipe(uglify()) // Minifies the concatenated js file.
.pipe(gulp.dest(".")) // important: otherwise there is no files stored
, { name: "appcomp" }))
.pipe(gulp.dest("./")); // important: root folder must be specified like so
});
角度依存性注入(サービスは常にコントローラの前に行く)の順序を維持するために、私はgulp-angular-filesortレシピを使用しましたが、役立たない。 gulpfile.jsをシンプルでメンテナンス可能にするため、ワイルドカードが使用されますが、生成されたmin jsファイルは失敗しました。コントローラは未定義のサービスを取得します。では、バージョン2の問題をどのように解決できますか? –
申し訳ありませんが、私は 'var comp = gulp.src([" app/services/*。js "、" app/controllers/*。js "]);'はすべてのサービスを読み込んでいますコントローラの前に。私は問題が 'services'ディレクトリのjsファイルの順序付けや' controllers'ディレクトリのjsファイルの順序付けにあると思っています。 'BaseSrvc.js'と' BaseCtrl.js'があることに気付きました。他のサービスはBaseSrvc.jsを継承しますか?他のコントローラはBaseCtrl.jsを継承しますか?もしそうなら、gulpは他の継承したサービスやコントローラの前にそれらの.jsファイルを読む必要があると思います。そのような場合は、単にワイルドカードを使用することはできません。 – kimbaudi
BaseSrvcは他のサービスによって拡張されています。 UtilSrvcは他のサービスによって注入されます。 BaseCtrlは、シェルページビュー、別名index.htmlでのみ使用されます。 –