在我的客户端 JS 中使用 SSJS 变量

Using SSJS variables in my client side JS

使用 Salesforce Marketing Cloud 我正在尝试使用 SSJS 检索记录列表,如下所示:

<script runat=server>  
        Platform.Load("Core","1");
        var dataRows = Platform.Function.LookupRows('Companies','name','Acme Ltd');
        if(dataRows && dataRows.length > 0) {
             for(var i=0; i<dataRows.length; i++) {
                  Platform.Response.Write(dataRows[i]["city"]);
             }
        }
</script>

我想在我的客户端 javascript 使用返回的 dataRows 以便我可以根据需要操作和打印数据。

然而,即使做一些像 console.log(dataRows) returns 500 内部服务器错误这样简单的事情。

有人可以建议吗?

没有直接的解决方案,但您可以尝试解决方法。 其中,您使用 "Variable.SetValue("",);" 将变量存储在 ampscript 中 然后在js中使用Variable.GetValue("");

获取这个值