0

次のエラー メッセージが表示されるため、このプランカーを実行できません。

しかし、ローカルのgithubからaccordion.jsをまったく参照していません!!!

そのメッセージを受け取ったのに何が間違っているのですか?

Refused to execute script from 'https://github.com/angular-ui/bootstrap/blob/master/src/accordion/accordion.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. run.plnkr.co/:1
Uncaught Error: [$injector:modulerr] Failed to instantiate module plunker due to:
Error: [$injector:modulerr] Failed to instantiate module ui.bootstrap.accordion due to:
Error: [$injector:nomod] Module 'ui.bootstrap.accordion' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

http://plnkr.co/edit/WYkxKqUOZAhT07HyuTOh?p=preview

4

1 に答える 1

0


まず、bootstrap js、jquery、および ui-bootstrap-tpls スクリプトを index.html に追加することを忘れています
。次に、必要なのは ui.bootstrap 依存関係だけです。

var app = angular.module('plunker',['ui.bootstrap']);

最後に、ここに作業プランカーがあります: http://plnkr.co/edit/Hntx2YihOb3U0HoGMQAQ?p=preview

于 2014-10-22T13:51:51.390 に答える