2015-02-07 3 views
-2

ColdFusion에서 내가 뭘하는지 완전히 이해하지 못하고 있지만, 강제로 작업해야했습니다. 누군가이 오류의 의미를 말해 줄 수 있습니까? 특별히 설명하십시오. 고맙습니다.ColdFusion에서 오류를 해석하는 방법

코드 :

<h1> Dear <cfif><cfoutput>#session.member.nmFirst# #session.member.nmLast#</cfoutput><cfelse>Student</cfelse></cfif>,</h1> 

오류 :

Invalid CFML construct found on line 3 at column 19. 
ColdFusion was looking at the following text: 

> 

The CFML compiler was processing: 
A cfif tag beginning on line 3, column 15. 

Resources: 

Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option. 
Check the ColdFusion documentation to verify that you are using the correct syntax. 
Search the Knowledge Base to find a solution to your problem. 

Browser  Mozilla/5.0 (Windows NT 6.3; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0 
Remote Address  xxxxxx 
Referrer http://www.xxxx.com/index.cfm/page/application-step-final 
Date/Time  06-Feb-15 05:21 PM 
+2

즉, 온라인 3에서 coldfusion 구문 오류가 있음을 의미합니다. 대부분 틀린 태그 또는 '#'의 잘못된 사용. 대부분 cfif 태그 내에 포함됩니다. –

+0

리퍼러 페이지에 있습니까? – user1874435

+0

오류가 발생했을 때 보던 페이지 또는 해당 페이지에 포함 된 파일에있었습니다. –

답변

1

그냥 그래서이 질문이 열려있는 배회하지 않습니다, 나는 오히려에 의존하지 않고, 제대로 답변 해 드리겠습니다 의견에 대답하십시오. 이것은 거기에서 복사됩니다.

<h1> Dear <cfif><cfoutput>#session.member.nmFirst# #session.member.nmLast#</cfoutput><cfelse>Student</cfelse></cfif>,</h1> 

<cfif>에는 상태가 없습니다.

+6

도 닫아야합니다. '' – duncan

+0

오, 피 묻은 지옥 예. 그걸 알아 채지 못 했어! –