1. ホーム
  2. javascript

[解決済み] 予期しない文字列の連結

2022-02-27 20:58:10

質問

eslintを使って自分のコードを修正しようとしているのですが、次のようなエラーが発生します。

cName: "" + ANR + "",

予期しない文字列の連結

const ANR = 'Animal Friend,ANR,ANP,$30';

        const specialityPlates = [{
      cName: 'Environmental / Wildlife',
      oSubMenu: [{
        cName: "" + ANR + "",
        cReturn: "" + ANR + "|27.00"
      },
      {

この文字列の連結はどこがおかしいのでしょうか?

解決方法は?

を使用してみてください。 テンプレートリテラル .

ie.

const ANR = 'Animal Friend,ANR,ANP,$30'
const specialityPlates = [
  {
    cName: 'Environmental / Wildlife',
    oSubMenu: [{
      cName: `${ANR}`, // "Animal Friend,ANR,ANP,$30"
      cReturn: `${ANR}|27.00` // "Animal Friend,ANR,ANP,$30|27.00"
    }]
  }
]