Skip to main content

次のタグが付いている話題の回答:

1
承認済み

blur-admin でスタイルが適用されない

まずAngularJS 1.x系なのでNodeのバージョンを下げた方が良いです 8か10あたりのバージョンになると思います(Nodeは偶数バージョンが安定版です) 両バージョン試しましたが私の環境では gulp "angular" is not defined は発生しませんでした gulp serve 後、コンソールログに以下のエラーが出力されていました Uncaught ...
sugumura's user avatar
  • 871
1

AngularのNgForOfのNgとは何の略でしょうか?

@oriri さんの回答の追加情報として。 ngはAngularが自身用のディレクティブを示す接頭辞として予約しているそうですね。 Directive custom prefix Don't prefix a directive name with ng because that prefix is reserved for Angular and using it could cause ...
kunif's user avatar
  • 1.8万
1
承認済み

AngularのNgForOfのNgとは何の略でしょうか?

AngularJS / Miscellaneous/ FAQ によると Why is this project called "AngularJS"? Why is the namespace called "ng"? Because HTML has angular brackets and "ng" sounds like &...
oriri's user avatar
  • 6,310
1

JavaScriptでcache bustingを自動化する方法

次のように外部 css タグの文字列を javascript で生成し、 head 中で document.write すれば読み込まれます。 (スニペット実行だと分かりにくいので文字色を赤にする css を入れておきます。) <head> <script> const now = new Date() const y ...
set0gut1's user avatar
  • 290
1

angularJSのng-clickとng-styleを使った方法

$scope.$apply(function(){ if(check.style==null){ check.style = "{backgroundColor: 'red' }"; }else{ check.style = "{backgroundColor: 'blue' }"; } }); これで動かないでしょうか?
user16768's user avatar

無効化に投票