如果有一种外部表单发布了一些安全的用户数据,然后又有人希望从表单中获取该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
};
});
答案 0 :(得分:1)
您可以使用window.postMessage
从外部表单传递数据,并在套件上添加客户端脚本以使用window.addEventListener
来监听数据。
要在表单上附加客户端脚本,您可以使用以下
newForm.clientScriptModulePath = './FILE_PATH_TO_CLIENT_SCRIPT';
其中newForm
是form
返回的serverWidget.createForm
对象,在客户端脚本中,您可以具有 pageInit ,它将初始化 eventListener