我正在对表单进行序列化和字符串化,并使用javascript将其附加到url查询字符串。
var payload = encodeURIComponent(JSON.stringify($('formen').serialize(true)));
var url_auth = window.superoffice_auth+"&redirect_url=" + encodeURIComponent(superoffice_auth_arg+"&settings="+payload);
第二件事是获取查询字符串并将其放入有效负载中,我可以将其分配给变量seetings。
我该怎么做?