We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
变量命名 标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据) 'ID'在变量名中全大写 'URL'在变量名中全大写 'Android'在变量名中大写第一个字母 'iOS'在变量名中小写第一个,大写后两个字母 常量全大写,用下划线连接 构造函数,大写第一个字母 jquery对象必须以'$'开头命名
在团队规范文档中提到的标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据),想知道什么是cgi?
标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据)
cgi
既然对象的属性不以驼峰的形式命名,那么是以什么方式命名?
The text was updated successfully, but these errors were encountered:
变量命名 标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据) 'ID'在变量名中全大写 'URL'在变量名中全大写 'Android'在变量名中大写第一个字母 'iOS'在变量名中小写第一个,大写后两个字母 常量全大写,用下划线连接 构造函数,大写第一个字母 jquery对象必须以'$'开头命名 在团队规范文档中提到的标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据),想知道什么是cgi? 既然对象的属性不以驼峰的形式命名,那么是以什么方式命名?
1.通用网关接口(Common Gateway Interface/CGI)2.参考文档中所说,猜测是跟cgi返回的数据命名一致,不然一个变量前端一个命名,返回的数据又一个命名很乱
Sorry, something went wrong.
No branches or pull requests
在团队规范文档中提到的
标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据)
,想知道什么是cgi
?既然对象的属性不以驼峰的形式命名,那么是以什么方式命名?
The text was updated successfully, but these errors were encountered: