Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

เหตุใดไฟล์ HTML ของฉันจึงไม่พบฟังก์ชัน JavaScript จากโมดูลที่มา


สิ่งนี้อาจเกิดขึ้นหากคุณไม่ได้ใช้คำสั่ง "export" ใช้ "export" ก่อนฟังก์ชันที่จะนำเข้าไปยังไฟล์สคริปต์ ไฟล์ JavaScript มีดังต่อไปนี้ ซึ่งมีไฟล์ชื่อ emo.js

demo.js

console.log("function will import");
export function test(){
   console.log("Imported!!!");
}

นี่คือไฟล์ “index.html” ที่นำเข้าฟังก์ชันข้างต้น -

index.html

ตัวอย่าง

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<script type='module'>
   import { test } from "./demo.js"
   test();
</script>
</body>
</html>

ในการรันโปรแกรมข้างต้น ให้บันทึกชื่อไฟล์ “anyName.html(index.html)” และคลิกขวาที่ไฟล์ เลือกตัวเลือก “เปิดด้วย Live Server” ในตัวแก้ไข VS Code

ต่อไปนี้เป็นผลลัพธ์จากไฟล์ demo.js ซึ่งมีชื่อฟังก์ชัน test()

เหตุใดไฟล์ HTML ของฉันจึงไม่พบฟังก์ชัน JavaScript จากโมดูลที่มา