我试图让这个对象有效但它失败了!
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对象呢。
答案 0 :(得分:0)
你需要逃避反斜杠:
"subtitle": "subtitle du Séminaire 0 \\n Prix : 23€ \\n Durée : 3 heures"