0

私はanglegiのブートストラップを持つphonegapアプリケーションにdatepickerを実装しようとしています。AngularJS Bootstrap datepickerエラー

Failed to load resource: the server responded with a status of 404 (Not Found) 
/uib/template/datepicker/datepicker.html Failed to load resource: the server responded with a status of 404 (Not Found) 

なぜ私はこのエラーを取得しています:

<h4>Popup</h4> 
<div class="row"> 
    <div class="col-md-6"> 
    <p class="input-group"> 
     <input type="text" class="form-control" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="popup1.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats" /> 
     <span class="input-group-btn"> 
     <button type="button" class="btn btn-default" ng-click="open1()"><i class="glyphicon glyphicon-calendar"></i></button> 
     </span> 
    </p> 
    </div> 

私はこのエラーを取得していますか?

ありがとうございます!

+1

HTTP 404 Not Foundエラーは、到達しようとしていたWebページがサーバー上に見つかりませんでした。 – codetoshare

+0

はい、私は知っていますが、このファイル(datepicker.html)はどこにありますか? – Emanuel

+1

これはブートストラップフレームワークの一部です。角度-uiを含む。 https://github.com/angular-ui/bootstrap – codetoshare

答えて

0

ライブラリーの2つの公開バージョンがあります.1つはテンプレートと1つはありません。違いの説明はhereです。テンプレート(-tpls-)のバージョンがロードされていないと思われます。

関連する問題