Error๐Ÿšซ

[์—๋Ÿฌ] javascript / Uncaught ReferenceError : ${value} is not defined at HTMLButtonElement.onclick

์ฝ”๋”999 2023. 1. 1. 23:01

๊ฐœ๋ฐœ์ž ๋„๊ตฌ์—์„œ ํ™•์ธํ•ด๋ณด๋ฉด ๊ฐ’์ด ์ž˜ ๋“ค์–ด๊ฐ€๋Š” ๊ฒƒ์œผ๋กœ ํ™•์ธ๋˜๋Š”๋ฐ
Uncaught ReferenceError : ${value} is not defined at HTMLButtonElement.onclick ๋ผ๋Š” ์—๋Ÿฌ๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‹ค.

์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ์—์„œ ๋ฌธ์ž์—ด์ธ ๊ฐ’์„ ๋„˜๊ธธ ๋•Œ๋Š” ' ' ์‹ฑ๊ธ€์ฝ”ํ…Œ์ด์…˜ ๋งˆํฌ๋กœ ๊ฐ์‹ธ์ฃผ์–ด์•ผ ํ•œ๋‹ค๊ณ ํ•จ!
productNo ๋Š” int ๊ฐ’์ด๋ผ ์‹ฑ๊ธ€์ฝ”ํ…Œ์ด์…˜ ๋งˆํฌ๊ฐ€ ์—†์–ด๋„ ๊ฐ’์ด ์ž˜ ๋„˜์–ด๊ฐ”๊ธฐ ๋•Œ๋ฌธ์— ๋” ๋ชป์ฐพ์•˜๋‹ค.
์•„์ฃผ ๊ธฐ์ดˆ์ ์ธ ๋ฌธ์ œ์˜€๋Š”๋ฐ ์‹œ๊ฐ„์„ ๋„ˆ๋ฌด ๋นผ์•—๊น€.

<!-- ์—๋Ÿฌ๋ฐœ์ƒ ์ฝ”๋“œ -->
<button type="button" name="reserveBtn" style="display: none;"
   onclick="addWishlist(this, ${prd.productNo}, ${sessionScope.u.userId})">
</button>

<!-- ์ˆ˜์ • ์ฝ”๋“œ -->
<button type="button" name="reserveBtn" style="display: none;"
   onclick="addWishlist(this, ${prd.productNo}, '${sessionScope.u.userId}')">
</button>