我在Javascript中有一个基本问题:
我需要插入此代码
DELETE https://{endpoint}/{bucketName}
并且//评论我的行。
我该如何避免它?
谢谢!
答案 0 :(得分:4)
该行不是JavaScript。 DELETE
甚至在它到达//
之前就会出错。
DELETE https://{endpoint}/{bucketName} ^^^^^ SyntaxError: Unexpected identifier
如果您使用任何库发出HTTP请求,则会希望将URL作为字符串传递。序列//
在字符串文字中没有特殊含义。
xhr.open("DELETE", "https://{endpoint}/{bucketName}");