如何使用高级REST客户端

时间:2017-05-30 09:43:10

标签: netsuite restlet

enter image description here如何使用高级REST客户端传递参数NetSuite RESTLet。我不能得到参数值。

function getRecord(datain)
{
    nlapiLogExecution('DEBUG','recordtype='+datain.recordtype);
    nlapiLogExecution('DEBUG','id='+datain.id);
    var sugu = nlapiLoadRecord(datain.recordtype, datain.id);

    return JSON.stringify(sugu);
}

2 个答案:

答案 0 :(得分:2)

如果您实际上是在尝试发送GET请求,那么它会进入URL,如附加图像中所示。如果您尝试发送POST或PUT,则将其添加到有效负载中(一旦选择POST或PUT就会显示)。

enter image description here

答案 1 :(得分:0)

enter image description here

你需要传递头中的参数而不是变量。请参考图像