Tôi muốn gọi một hàm Python từ mã JavaScript, vì không có giải pháp thay thế nào trong JavaScript để làm những gì tôi muốn. Điều này có khả thi không? Bạn có thể điều chỉnh đoạn mã dưới đây để hoạt động không?
Mã 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
chứa các hàm sử dụng thư viện nâng cao không dễ viết tương đương trong JavaScript:
import nltk # is not in JavaScript
def processParagraph(text):
...
nltk calls
...
return lst # returns a list of strings (will be converted to JavaScript array)