gpt4 book ai didi

javascript - REST 的 JSON 中 snake_case 相对于 camelCase 的优势

转载 作者:行者123 更新时间:2023-11-30 17:16:03 25 4
gpt4 key购买 nike

取自https://github.com/interagent/http-api-design#downcase-paths-and-attributes

Downcase attributes as well, but use underscore separators so that attribute names can be typed without quotes in JavaScript, e.g.:

service_class: "first"

“属性名称可以不带引号”是什么意思?

最佳答案

这是一个有效的 Javascript 文字:

{ foo_bar: 'baz' }

这不是:

{ foo-bar: 'baz' }

后者必须是:

{ 'foo-bar': 'baz' }

这就是它的全部内容;前面的段落提到了“破折号分隔的路径名”,然后说你不应该在 JSON 中使用破折号。这不是 snake vs. camelCase,而是 snake vs. "dash-case"。

关于javascript - REST 的 JSON 中 snake_case 相对于 camelCase 的优势,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26106325/

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