0
使用Beego框架爲Golang插入JavaScript代碼片段的最佳方法是什麼?在Beego/GoLang中插入JavaScript代碼片段模板
目前,我只是將數據添加到模板:
c.Data["Javascript"] = JavasciptStringObject
而且在script.tpl文件中添加插入點:
var canvas = new fabric.Canvas('c');
canvas.setHeight(571); //todo: Set to height of image
canvas.setWidth(991);
{{.JavaScript}}
的問題是,它避開了引號從字符串,而不是直接注入:
var canvas = new fabric.Canvas('c');
canvas.setHeight(571);
canvas.setWidth(991);
"var path = new fabric.Path('M 617 141 L 606 126M 606 126 L 604 127 z', { stroke: 'red', strokeWidth: 2, fill: false, originX: 'left', originY: 'top',});canvas.add(path); "
一些有用的資源包括ËGolang HTML模板文件,這顯然Beego型號:https://golang.org/pkg/html/template/
而這個堆棧溢出似乎越來越近了,我不認爲這將與Beego工作:Go lang templates: always quotes a string and removes comments