本文介绍了如何从Scala Json字符串中将Json变成JS变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Play框架,并尝试将服务器中的Json字符串作为参数发送到Scala模板。
I'm using Play framework and trying to send a Json string from the server as a parameter to a Scala template.
@(aj: String)
@import play.api.libs.json.Json
<!DOCTYPE html>
<html lang="en">
<body>
<div id="container">
@aj
</div>
<script>
var [email protected](aj);
var a = JSON.parse(ab);
</script>
</body>
</html>
我在容器div中显示了Json字符串。
但是我无法将Json从'aj'变成javascript变量。
请帮忙。
I get the Json String displayed inside the container div.But I'm not able to get the Json out of 'aj' into a javascript variable.Please help.
推荐答案
在视图中你可以这样做:
In view you can do:
<script>
var json = @Html(aj),
obj = JSON.parse(json);
</script>
这篇关于如何从Scala Json字符串中将Json变成JS变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!