使用JSON对象

时间:2017-04-05 19:56:53

标签: javascript json node.js

我试图让这个对象有效但它失败了!

config.SEMINAIRES = JSON.parse(`{
  "0": { 
  "title": "Séminaire0", 
  "image_url": "http://placehold.it/800x800", 
  "subtitle": "subtitle du Séminaire 0 \n Prix : 23€ \n Durée : 3 heures", 
  "buttons": [{ "type": "web_url", "url": "http://www.aeazeaze.fr", "title": "Réserver" }, { "type": "postback", "title": "Détails", "payload": "CIRCUIT_0" }] }
}`);

我尝试了\n\\n,但没有任何效果。我怎么能拥有一个有效的JSON对象呢。

1 个答案:

答案 0 :(得分:0)

你需要逃避反斜杠:

"subtitle": "subtitle du Séminaire 0 \\n Prix : 23€ \\n Durée : 3 heures"