Zum Beispiel in der Axios-Dokumentation
axios#get(url[, config])
axios#delete(url[, config])
axios#head(url[, config])
get(url[,config])
config参数表示可选get(url,[config])
这种config也表示可选,二者有什么区别呢,逗号怎么写在里面
还有逗号在后面的:
jquery:hover([over,]out)
和 hover([over],out)
Was ist der Unterschied?
Das Komma steht am Ende und die eckigen Klammern geben auch an, dass es optional ist.
Wo ist diese Grammatik- oder Schreibspezifikation definiert?
没看过axios的文档。
我的理解是:
get(url[, config])
这种表示可以写两个参数或一个参数,后一个是可选的;get(url,[config])
这种表示必须写两个参数,后一个config虽然可选,但是没有的时候要传null;hover([over,]out)
这种表示你写两个参数的时候分别作为over和out传进函数,而如果只有一个参数那就是out;hover([over],out)
意义同上:没有over的时候必须传个null进去;现在一般插件都可以实现参数个数的识别了,所以把逗号写外边、需要传null占位的情况好像已经极少了吧。