1
콘솔에서 파싱하여 캐시 다이제스트 의존성을 계산하는 방법을 알아 봅니다.ActionView :: Digestor.new는 이름에 어떤 포맷을 허용합니까?
ActionView::Digestor.new(name: "posts/show", finder: finder).digest
# => Cache digest for app/views/posts/show.html.haml: 42bf3496bacfcf84492d8c05d81305fe
어느 응용 프로그램/뷰/글/_post.html.haml 템플릿이 작품의 :
ActionView::Digestor.new(name: "posts/_post", finder: finder).digest
# => Couldn't find template for digesting: posts/_post
ActionView::Digestor.new(name: "posts/post", finder: finder).digest
# => Couldn't find template for digesting: posts/post
이 앱/뷰/글/show.html.haml 템플릿 작동 (모두 finder = ApplicationController.new.lookup_context
)
이 부분을 찾기 위해 어떻게 조치 할 수 있습니까?
감사합니다. 이 문제가 발생했을 때이 문제가 발생했을 때 https://github.com/rails/rails/issues/18595 –
(또는 코드를 출력하지 못했습니다) –