Spring MVC のコントローラーから送信された jquery でデータを表示しようとしています。問題は、文字列にデータベースからの引用符があるため、javascript - jquery を使用したコードが機能しないことです。
たとえば、私の文字列はデータベースに (principal:"Carl Duvierts") あり、コントローラーによって送信されます。
alert("${person.name}"); //not working
Spring MVC のコントローラーから送信された jquery でデータを表示しようとしています。問題は、文字列にデータベースからの引用符があるため、javascript - jquery を使用したコードが機能しないことです。
たとえば、私の文字列はデータベースに (principal:"Carl Duvierts") あり、コントローラーによって送信されます。
alert("${person.name}"); //not working
使用しているオブジェクトが既に文字列である場合、アラートでそれを引用符で囲む必要はありません。
//this will work
var stringWithQuotes = 'abc"de"fg';
alert(stringWithQuotes);//no quotation marks inside the parentheses
//The code you provided:
alert("${person.name}");
//will just alert the actual string '${person.name}', not what is referenced by the variable