jspページでコーディングすると問題が発生しました:
<body>
<script>
var a = "${testtesttest }";
</script>
</body>
「testtesttest」オブジェクトは間違いなく見つからないはずですが、何を返す必要がありますか? 公式ドキュメントでは、次のように述べています。
For example, when evaluating the expression ${product}, the container will look for product in the page, request, session, and application scopes and will return its value. If product is not found, null is returned.
http://docs.oracle.com/javaee/1.4/tutorial/doc/JSPIntro7.html
null が返されると思っていましたが、私が望むなら質問はしません.. Firebug を介して、ブラウザでコンパイルした後のコードは次のとおりです。
<body>
<script>
var a = "";
</script>
</body>
なぜnullではないのですか?? いったい結果はどうなるのか、私は混乱している..