0
我不能得到這個編譯:導出函數內返回一個新的立即excecuted功能
export function Parse(jsonData) {
try {
if (jsonData.d != undefined) {
if (jsonData.d != "") {
return (new function("return " + jsonData.d))();
}
}
else {
if (jsonData != "") {
return (new function("return " + jsonData))();
}
}
return {};
}
catch (e) {
return { exception: e.Message };
}
}
它既有(「迴歸」聲明說)下一個標記錯誤或}預期
很酷的解決方案! – FutuToad 2013-03-18 09:17:25