我正在尝试将 post 方法用于一个简单的套件脚本程序,我对此很陌生。
在 Netsuite 中,我编写了一个套件脚本,如下所示。
function restPost()
{
var i = nlapiLoadRecord('department', 115);
var memo = nlapisetfieldvalue('custrecord225', ' ');// this is a customfield, which i want to populate the memo field, using rest client in firefox
var recordId = nlapiSubmitRecord(i);
}
我创建了一个脚本记录并上传了这个套件脚本,甚至复制了外部 URL 以将其粘贴到 restclient。
在Restclient(firefox插件)中,粘贴外部URL,我将方法作为post,标题授权给定,内容类型:application / json,并在正文中输入{"memo":"mynamehere"};
在这个我得到的错误是
message": "missing ) 在参数列表之后
我什至通过编写其他套件脚本程序来尝试它,我得到的错误如下:
对象文字中的意外标记 (null$lib#3) 空 JSON 字符串 数据格式无效。您应该返回 TEXT。
我对编程世界有点陌生,所以任何帮助都会非常好。