Lint错误 - 意外的字符串连接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lint错误 - 意外的字符串连接相关的知识,希望对你有一定的参考价值。

render() 
    const  a, b  = this.props;
    if (// some condition // )
    window.location.assign('/v2#/org/' + a + '/support')

对于行window.location.assign('/v2#/org/' + orgId + '/support')我得到lint错误 - 意外的字符串连接。

如何防止这种情况发生?

答案

你应该使用由“`”包裹的模板字符串(后面的刻度/重音符号)。

window.location.assign(`/v2#/org/$orgId/support`)
另一答案

使用字符串插值代替:

render() 
    const  a, b  = this.props;
    if (// some condition // )
    window.location.assign(`/v2#/org/$a/support`)

以上是关于Lint错误 - 意外的字符串连接的主要内容,如果未能解决你的问题,请参考以下文章

连接字符串的意外行为

连接字符串的意外问题

用点表示法连接字符串和变量 = 错误?

监听套接字意外死亡

无法在某些本地化上通过 pod spec lint 验证

httpWebRequest请求错误,基础连接已经关闭: 连接被意外关闭