如何使用SuiteScript利用外部表单并从外部表单检索POST数据?

时间:2019-03-04 21:41:13

标签: iframe suitescript2.0

如果有一种外部表单发布了一些安全的用户数据,然后又有人希望从表单中获取该POST数据并流入NetSuite,那么有没有办法在SuiteScript中做到这一点?使用iframe展示表单的简单示例:

define(['N/ui/serverWidget'],
    function(serverWidget) {
        function onRequest(context) {
        var func = 'test';
        var request = context.request;
        var url = 'https://www.sample.com/sample-form.html'; // Not a real form
        var title = 'TEST';

        if(request.method == 'GET') {
            try {
                var content = '<iframe width=960px height=100% style="height:640px;" src=' + url + '></iframe>'

                var newForm = serverWidget.createForm({
                    title: title
                });

                var newField = newForm.addField({
                    id: 'custpage_form',
                    type: serverWidget.FieldType.INLINEHTML,
                    label: 'TEST'
                });

                newField.defaultValue = content;
                context.response.writePage(newForm);
            }
            catch(e){
                log.error(func, JSON.stringify(e));
            }
        }
        else {
        }
    }

    return {
      onRequest: onRequest
    };
});

1 个答案:

答案 0 :(得分:1)

您可以使用window.postMessage从外部表单传递数据,并在套件上添加客户端脚本以使用window.addEventListener来监听数据。

要在表单上附加客户端脚本,您可以使用以下

newForm.clientScriptModulePath = './FILE_PATH_TO_CLIENT_SCRIPT';

其中newFormform返回的serverWidget.createForm对象,在客户端脚本中,您可以具有 pageInit ,它将初始化 eventListener