Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のコードに" some more text "を追加すると、フィールド 'defaultName' (文字列値) を呼び出すという奇妙な試みが発生します。
-- alert = native.showAlert( "saved!", "Your score is saved to " ..defaultName " some more text " ..allScore_txt , { "Done" }, onComplete ) --
これを修正する方法はありますか?
..afterを逃したdefaultNameため、Lua は関数呼び出しを意味していると判断し、エラー メッセージが表示されます。identifier"string"Lua では、identifier("string")` の省略形としての形式での関数呼び出しが許可されています。
..
defaultName
identifier"string"