2017-02-25 188 views
0

當上傳到Heroku時,它向我拋出此錯誤,而在本地主機上運行時沒有錯誤。ENOENT:沒有這樣的文件或目錄 - pug中的錯誤

下面是瀏覽器消息: enter image description here

這裏是我的display.pug

extends ../LoginLayout/LoginLayout.pug 
block content 

- var createdAt = requser.local.profile.createdAt 
script(type="text/javascript"). 
    $(document).ready(function() { 
     var createdAt = Date.parse('!{createdAt}');    
     //- console.log(createdAt); 
     $('.memberSince')[0].innerHTML = moment(createdAt).fromNow(true); 
    }); 

.parallax-container.display 
    .parallax 
     img(src=requser.local.profile.herobg) 
    .container.white-text.center 
     img.circle(src=requser.local.profile.dp style='width: 200px;') 
     h1 #{requser.local.name} 
     h6 Member since #[span.memberSince #{createdAt}] | Lives in #{requser.local.profile.location} | #[strong 232222] points 
     a.btn.btn-large.blue.darken-3.waves-amber.waves-effect.white-text(href='#') #[i.fa.fa-user-plus.left] Follow 

回答

0

我這個解決我自己。

我的文件層次:

This was my file hierarchy

和我所用: extends ../LoginLayout/LoginLayout.pug代替extends ../loginLayout/loginLayout.pug。請注意0​​從存儲的小字母開始。

相關問題