打包出来的module报Unexpected strict mode reserved word错误
Closed this issue · 1 comments
dragonkuang commented
打包出来的node_modules_yapi-to-typescript_lib文件中有let字段,导致js报错"Unexpected strict mode reserved word"错误
fjc0k commented
修改 getRequestFunctionName 避免重复。
https://fjc0k.gitee.io/yapi-to-typescript/handbook/config.html#getrequestfunctionname
getRequestFunctionName(interfaceInfo, changeCase) {
// 以接口全路径生成请求函数名
return changeCase.camelCase(interfaceInfo.path)
// 若生成的请求函数名存在语法关键词报错、或想通过某个关键词触发 IDE 自动引入提示,可考虑加前缀,如:
// return changeCase.camelCase(\`api_\${interfaceInfo.path}\`)
// 若生成的请求函数名有重复报错,可考虑将接口请求方式纳入生成条件,如:
// return changeCase.camelCase(\`\${interfaceInfo.method}_\${interfaceInfo.path}\`)
},