2016年5月30日 星期一

angular templateUrl 位置

app.directive('XXXXXX', function(){

  return {

    templateUrl: location.protocol+ '//'

                  + window.location.host

                  + window.location.pathname

                  + 'js/XXX/XXXXXX.html',



just Example.
因為換了一台主機發現 website 目錄被動過再深入一層 folder,結果寫死的 url 就會有問題,只好那種方式來判斷,拿到一定ok 的 Template Url。

沒有留言:

張貼留言

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...