เรียกใช้ฟังก์ชัน Python จากโค้ด JavaScript
ฉันต้องการเรียกใช้ฟังก์ชัน Python จากโค้ด JavaScript เนื่องจากไม่มีทางเลือกอื่นใน JavaScript สำหรับทำสิ่งที่ฉันต้องการ เป็นไปได้หรือไม่ คุณสามารถปรับข้อมูลโค้ดด้านล่างให้ใช้งานได้หรือไม่ รหัส JavaScript: var tag = document.getElementsByTagName("p")[0]; text = tag.innerHTML; // Here I would like to call the Python interpreter with Python function arrOfStrings = openSomehowPythonInterpreter("~/pythoncode.py", "processParagraph(text)"); ~/pythoncode.py มีฟังก์ชั่นที่ใช้ไลบรารีขั้นสูงที่ไม่มีความง่ายในการเขียนเทียบเท่าใน JavaScript: import nltk # is not in JavaScript def processParagraph(text): ... nltk calls …