gpt4 book ai didi

构造函数 new 与 transcrypt?

转载 作者:行者123 更新时间:2023-12-02 02:56:53 26 4
gpt4 key购买 nike

我想通过加密代码获取文件。通常这是通过 XMLHttpRequest 完成的。在 Javascript 脚本中,新的构造函数用于此目的。我如何进行转加密?这是我不工作的代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

def read_file():
xmlhttp=XMLHttpRequest()
xmlhttp.open('GET', "https://raw.githubusercontent.com/bunkahle/Transcrypt-Examples/master/README.md", False);
xmlhttp.send()
console.log(xmlhttp.responseText)

和 html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="__javascript__/read_file.js"></script>
<title>Read File</title>
</head>
<body>
<main>
<h1>Read a file!</h1>
<p id="p1" class="para1">Read a file!</p>
<button id="button1" onclick="read_file.read_file()">Click for retrieving text file</button><br><br>
<p id="demo"></p>
</main>
</body>
</html>

最佳答案

您可以使用 __new__创建原生 JavaScript 对象的函数:

(请注意,对于实例化 Python/Transcrypt 类,这不是必需的)

#!/usr/bin/env python
# -*- coding: utf-8 -*-

def read_file():
xmlhttp= __new__ (XMLHttpRequest())
xmlhttp.open('GET', "https://raw.githubusercontent.com/bunkahle/Transcrypt-Examples/master/README.md", False);
xmlhttp.send()
console.log(xmlhttp.responseText)

可以在以下位置找到更多信息:

http://www.transcrypt.org/docs/html/special_facilities.html#creating-javascript-objects-with-new-constructor-call

关于构造函数 new 与 transcrypt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48847562/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com