我在对 NetSuite 中的 api 函数进行 javascript 调用时遇到问题,该函数返回一个带引号的字符串。每次调用都会抛出一个错误。
var selling_point_1 = "<%=getCurrentAttribute('item','custitemsellingpoint1')%>";
在调试器中查看时,计算结果为:
var selling_point_1 = "Product Dimensions: H:14" W:24"";
对此的任何字符串函数(如 .length 或 charAt(0) )也会引发错误。我无法控制函数调用返回的内容,所以我需要知道如何处理嵌入的引号。
任何帮助将不胜感激,约翰