使用注释存储字符串。其他是利用 js 可返回函数源码(甚至注释)的特性。
那么其他这也是一种特殊的写多行字符的方法。
Function.prototype.heredoc = function(){
// 利用 function 的注释来存储字符串,而且无需转义。
var _str = this.toString(),
s_pos = _str.indexOf("/*")+2,
e_pos = _str.lastIndexOf("*/");
return (s_pos<0 || e_pos<0) ? "" : _str.substring(s_pos, e_pos);
}
function fn(){
/* xw:
i love you.
*/
}
var str_table = fn.heredoc();
console.log(str_table);