gpt4 book ai didi

CoffeeScript 链接调用

转载 作者:行者123 更新时间:2023-12-01 01:22:41 25 4
gpt4 key购买 nike

无法使用 CoffeeScript 管理链接调用。
我正在尝试在 CoffeeScript 中重现这一点:

function htmlEscape(str) {
return String(str)
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
}

我正在尝试这种方式:
htmlEscape = (str) ->
String(str)
.replace (a,b)
.replace (c,d)

收到 Parse error on line 13: Unexpected ','错误。
谁能帮助我正确的链接语法?

最佳答案

您必须删除这些空格(并且可能在逗号后放置一个空格):

htmlEscape = (str) ->
String(str)
.replace(a, b)
.replace(c, d)

或者:
htmlEscape = (str) ->
String(str).
replace(a, b).
replace(c, d)

我喜欢第二个。请注意,您可以使用 reduce 抽象您正在做的事情。 .

关于 CoffeeScript 链接调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8532394/

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