gpt4 book ai didi

javascript - 表单提交后重定向(CSR)

转载 作者:数据小太阳 更新时间:2023-10-29 06:10:17 26 4
gpt4 key购买 nike

在由 CSR(客户端呈现)覆盖的 SharePoint 表单中。

我尝试添加一个新按钮,它的功能与“保存”按钮几乎相同,只是它会重定向到具有给定参数的另一个表单。

问题是,重定向不起作用。我尝试通过更改表单的“操作”属性进行重定向,但它似乎没有被计算在内。

这是新按钮: <input id="custom_addLine" type="button" name="custom_addLine" value="+" class="ms-ButtonHeightWidth">

这是按钮调用的函数和下面的 addLine 方法:

$('#custom_addLine').click(function(event){
event.preventDefault();
addLine(getQueryStringParameter('ID'));
});


function addLine(id) {
if(!PreSaveItem()) {
return false;
}
var actionUrl = "/Lists/PurchaseRequestLine/NewForm.aspx?PurchaseRequestID="+ id;
var encodedActionUrl = encodeURIComponent(actionUrl);

var newFormAction = location.pathname + '?Source=' + encodedActionUrl;
$('#aspnetForm').attr('action',newFormAction);

if(SPClientForms.ClientFormManager.SubmitClientForm('WPQ1')){
return false;
}
WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions('custom_addLine', "", true, "", "", false, true));
}

getQueryStringParameter 是一个自定义函数,用于从 URI 检索参数(有效)。

棘手的部分是,我想保留默认操作 URI,以防单击原始“保存”按钮,这就是即时修改操作参数的原因。

最佳答案

您可以直接从原始操作更改 Source 属性:

 function addLine(id) {
if(!PreSaveItem()) {
return false;
}

var oldActionUrl = $('#aspnetForm').attr('action');
var oldSource = GetUrlKeyValue("Source", true, oldActionUrl);

var newSource = "/Lists/PurchaseRequestLine/NewForm.aspx?PurchaseRequestID="+ id;

var newActionUrl = oldActionUrl.replace(oldSource, encodeURIComponent(newSource));

WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions('custom_addLine', "", true, "", newActionUrl, false, true));
}

关于javascript - 表单提交后重定向(CSR),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39104986/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com