0

Spring MVC のコントローラーから送信された jquery でデータを表示しようとしています。問題は、文字列にデータベースからの引用符があるため、javascript - jquery を使用したコードが機能しないことです。

たとえば、私の文字列はデータベースに (principal:"Carl Duvierts") あり、コントローラーによって送信されます。

alert("${person.name}"); //not working
4

1 に答える 1

0

使用しているオブジェクトが既に文字列である場合、アラートでそれを引用符で囲む必要はありません。

//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
于 2013-02-27T18:09:16.657 に答える