現在、私のアプリケーションは次のエラー メッセージを表示しています。
「値 '' を数値に変換できません。」
それは私を驚かせません。変数は追加されたばかりなので、新しいフィールドを作成する前にアプリケーションを使用した人にとっては、変数は空の文字列です。
<td><cfif studentRecruitComments neq "">
<a href="javascript: showContent('#studentRecruitComments#')">
#studentRecruit#
</a>
<cfelse>
#studentRecruit#
</cfif>
</td>
<cfset tstudentRecruit = tstudentRecruit + studentRecruit>
最後の計算は集計システム用です。この行の前でも変数tstudentRecruit
は 0 に設定されているため、これは間違いなく StudentRecruit 変数にあります。空の文字列を整数に変換する適切な方法は何ですか? ここで露骨に間違っていることはありますか?