私はウェブアプリを開発中です。すべてのファイルを UI に動的にロードするために AngularJS を使用しています。
すべてのindex.html
ファイルがオンクリックまたはオンロードで動的にロードされるファイルがあります。
//index.html
<signin button> <signup button> // etc.,
//on-clicking signin button a SignIn-page will load in the below div
<div id="bodyview"></div>
// end of index.html
これで、サインイン ページは以下の構造のようになります
/*a div where my accordion menu will load when the
*below submit button is clicked*/
<div id="menu"></div>
//other sign-in-form stuff will follow on...
//submit button at the end
<submit button> //only on clicking the submit button the menu will be loaded
今私の問題は、アコーディオンの menu.html ファイルをロードできますが、それが依存している css および js ファイルをロードできないことです。私はstackoverflowについて調査しましたが、うまくいきませんでした。
AngularJS を使用して css と js の依存関係をロードする方法を決定するのを手伝ってくれる人はいますか?