私のプロジェクトにモデルダイアログを追加したいと思います。角度jsでモデルダイアログを開くときにエラーが発生する
<div ng-controller="bodyController">
<!-- This html would live at the path specified in the controller: path/to/your/modal-template.html -->
<button class="btn" ng-click="open()">Open Modal</button>
<div modal="showModal" close="cancel()">
<div class="modal-header">
<h4>Modal Dialog</h4>
</div>
<div class="modal-body">
<p>Example paragraph with some text.</p>
</div>
<div class="modal-footer">
<button class="btn btn-success" ng-click="ok()">Okay</button>
<button class="btn" ng-click="cancel()">Cancel</button>
</div>
</div>
</div>
そして私のapp.jsは、このようなものです::
私のhtmlコードは次のようである、私は私が私のindex.html file.Stillに角度UIブートストラップJSを追加した
var app = angular.module("MyApp", ["ui.bootstrap.modal"]);
app.controller("bodyController", function($scope) {
$scope.open = function() {
$scope.showModal = true;
};
$scope.ok = function() {
$scope.showModal = false;
};
$scope.cancel = function() {
$scope.showModal = false;
};
});
モデルダイアログが表示されません。私は私が得ているエラーを取得しています。
私のエラーは次のようである:
誰もがこのエラーを解決行う方法を私はお勧めできます。
更新エラーが質問 –
いただきましエラーに示されていますか? –
コンソールエラー?それをここに投稿してください –