1
Angular JS Ng-Route에 관한 문제가 있습니다. 경로를 지정할 수 있지만 템플릿이 오면 나는 스크립트를 실행해야하지만 그렇게 할 수는 없다.로드 후 Angles Js Ng-Route 실행 스크립트
Ex. selectpicker (bootstrap)를 추가하고 싶습니다. 검색 할 수 있습니다. 그러나 내가 그 템플릿을 보낼 때 selectpicker를 얻을 수는 있지만 작동하지 않을 것입니다. 거기에 검색 바가 없습니다.
App.js
var myApp = angular.module("myApp", ["ngRoute"]);
myApp.config(function($routeProvider) {
$routeProvider
.when("/test", {
templateUrl: "partial/test.html"
})
.otherwise({
redirectTo: "404.html"
});
});
부분/test.html를
<div class="form-group">
<label class="col-sm-4 control-label form-label">With Search input</label>
<div class="col-sm-8">
<select class="selectpicker" data-live-search="true">
<option>Hot Dog, Fries and a Soda</option>
<option>Burger, Shake and a Smile</option>
<option>Sugar, Spice and all things nice</option>
</select>
</div>
</div>