これ ( https://github.com/gocardless/es6-angularjs/blob/master/README.md ) を出発点として使用してから、ブートストラップJavaScript コードを含めます。モーダルを開くには
しかし、起こる唯一のことは次のとおりです。
Potentially unhandled rejection [3] Error loading "components/bootstrap/dist/js" at http://localhost:3010/components/bootstrap/dist/js.js
Error loading "components/bootstrap/dist/js" from "app-compiled/bootstrap" at http://localhost:3010/app-compiled/bootstrap.js
Not Found: http://localhost:3010/components/bootstrap/dist/js.js (WARNING: non-Error used)
これをmain.jsに追加しました:
import 'bootstrap-js';
//TODO please explain to me why not working
これを loader.config.js ファイルに追加します。
System.config({
meta: {
...,
'components/bootstrap/dist/js':{ format: 'global', export: 'bootstrap'}
},
map: {
....,
'bootstrap-js': 'components/bootstrap/dist/js'
}
});