2017-01-18 10 views
0

私のモジュールに 'smart-table'モジュールを追加しようとしています。私はウェブサイト(http://lorenzofox3.github.io/smart-table-website/)の指示に従っており、スマートテーブルをインストールするためにバワー・インストール角度スマートテーブルを使用しました。AngularJS Multiple Module Failure

angular.module("App", ['ngRoute','ui-leaflet']) 

私は上記のコードに 'スマート・テーブル' を追加していない:

angular.module("App", ['ngRoute','ui-leaflet','smart-table']) 

マイアプリはもはや機能します。私は時間をかけてさまざまなソリューションを試してみましたが、なぜモジュールが一緒に機能しないのか理解できません。

編集:

<script type="text/javascript" src="js/leaflet.js"></script> 
<script type="text/javascript" src="/bower_components/angular-smart-table/dist/smart-table.js"></script> 

そして、私のbower.jsonファイルから:

これは私のindex.htmlファイルからのもので、あなたがしなければならない

{ 
    "name": "", 
    "homepage": "https://github.com/auth0-samples/auth0-angularjs-sample", 
    "authors": [ 
    "" 
    ], 
    "description": "", 
    "main": "", 
    "moduleType": [], 
    "license": "MIT", 
    "private": true, 
    "ignore": [ 
    "**/.*", 
    "node_modules", 
    "bower_components", 
    "test", 
    "tests" 
    ], 
    "dependencies": { 
    "auth0-lock": "10.2.2", 
    "angular-jwt": ">= 0.1.3", 
    "angular-lock": "~1.0.2", 
    "a0-angular-storage": "0.0.5", 
    "angular-ui-router": "~0.3.1", 
    "bootstrap": "~3.3.7", 
    "angular-smart-table": "2.1.8" 
    }, 
    "resolutions": { 
    "angular": "1.5.8" 
    } 
} 
+3

チェックエラーを追加します..あなたは私のhtmlコードにまたはどこか他のjsファイルの参照が不足してJSファイル参照 –

+0

を含めるようにミスがあるかもしれませんか? – user7312431

+0

"\t コンソールでのエラーをチェックしてください。jsファイルの参照を含めることができないかもしれません" @PankajParkarはインデックスファイルbower.jsonとインストールに使用したコマンドを投稿すると述べています。 – AndreaM16

答えて

0

最初の事はあなたに含めますhtmlファイル

<script src="smart-table.js"></script> 

は、あなたのモジュールにコンソールで

var app = angular.module('app',['smart-table']);