gpt4 book ai didi

python - 在 Transcrypt 中使用 XMLHttpRequest()

转载 作者:行者123 更新时间:2023-11-28 18:14:48 25 4
gpt4 key购买 nike

我对完全在客户端编写小型 API 站点的代码只有极少的 JavaScript 知识。

如何在 Transcrypt 中使用 XMLHttpRequest()?还是我应该使用 URLlib 或其他东西?

是否像在 JS 中创建一个新的 XMLHttpRequest 对象然后发送数据或检索页面一样简单?

XHR = XMLHttpRequest()
XHR.open("POST", "https://example.com/cors.php")

最佳答案

确实和JS一样简单,只有Python语法:

def read_file():
xmlhttp= __new__ (XMLHttpRequest())
xmlhttp.open('GET', 'https://github.com/QQuick/Transcrypt/blob/master/README.rst', False);
xmlhttp.send()
console.log(xmlhttp.responseText)

在您的示例中:

XHR = __new__ (XMLHttpRequest())
XHR.open("POST", "https://example.com/cors.php")

注意 __new__ () 函数。在 JavaScript 中,它应该是 new 运算符,但 Python 语法不允许这样做。

如果你想完全避免 __new__ (),你可以将 XMLHttpRequest 封装为一个真正的 Python 类(它现在是一个 JS 函数),但没有必要这样做。

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

关于使用或避免使用 __new__ () 的一般说明。

您也可以通过 JQuery,如下面更大的示例:

__pragma__ ('alias', 'jq', '$')
__pragma__ ('noalias', 'clear')

# For use by eval'ed turtle applet
import turtle
import random
import math

def clear ():
editor.setValue ('')
turtle.reset ()
run ()

def run ():
def success (result):
global random

turtle.reset ()
rnd = random
eval (result)
random = rnd

def fail (a, b, c):
print ('Run error:', a, b, c)

# N.B. The request has to be explicitly encoded, but the response is already implicitly decoded
jq.ajax ({
'url':'http://www.transcrypt.org/compile',
'type': 'POST',
'data': JSON.stringify (editor.getValue ()),
'dataType': 'json',
'contentType': 'application/json',
'success': success,
'fail': fail
})

def mail ():
def success (result):
print (result)

def fail (a, b, c):
print ('Run error:', a, b, c)

jq.ajax ({
'url':'http://www.transcrypt.org/mail',
'type': 'POST',
'data': JSON.stringify ([document.getElementById ('mail_address') .value, editor.getValue ()]),
'dataType': 'json',
'contentType': 'application/json',
'success': success,
'fail': fail
})

def selectExample ():
def success (result):
editor.setValue (result [0])
turtle.reset () # Using old paths
window.terminate = True
console.log (result [1])
eval (result [1]) # Using new paths (so cannot clear old result)

def fail (a, b, c):
print ('Select example error:', a, b, c)

selector = document.getElementById ('select_example')

jq.ajax ({
'url':'http://www.transcrypt.org/example',
'type': 'POST',
'data': JSON.stringify (selector.options [selector.selectedIndex] .value),
'dataType': 'json',
'contentType': 'application/json',
'success': success,
'fail': fail
})

selectExample ()

这是在以下位置完成的方式:

http://www.transcrypt.org/live/turtle_site/turtle_site.html

[编辑]

(回应OP的评论)

事实上,任何普通的 JavaScript 对象都可以通过这种方式实例化。请注意,在特殊情况下,您始终可以插入一段文字 JS 代码,如以下所述:

http://www.transcrypt.org/docs/html/special_facilities.html#inserting-literal-javascript-pragma-js-and-include

至于可用的库,Transcrypt 旨在直接使用任何 JS 库,因为 JS 库往往专注于与客户端/浏览器相关的功能。

然而,可用标准库的数量正在增长。目前可用的有:

  • 数学
  • 日期时间
  • 检查
  • itertools
  • 记录
  • 数学
  • 随机(部分)
  • 重新(几乎完成)
  • 时间
  • 乌龟(几乎完成)
  • 警告

除此之外,还有一个 Numpy 的小而有用的部分的端口,如下所述:

http://www.transcrypt.org/numscrypt/docs/html/supported_constructs.html

可在:

https://github.com/QQuick/Numscrypt

关于python - 在 Transcrypt 中使用 XMLHttpRequest(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49042487/

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