我有一个与sharepoint 2013相关的问题。我有一项调查。在最后一页,有一个是/否的问题。我想要的是在点击Sharepoint提供的“完成”按钮后,应该将用户重定向到一个谢谢页面。我通过以下代码提供此信息:
$(document).ready(function(){
if(document.getElementById('ctl00_ctl31_g_78e43776_7d3b_4ab6_9d50_7801d0032f15_c
window.location = "/SitePages/ThankYouE.aspx";
}
});
然而,问题是由于重定向而未保存调查响应。当我删除重定向时,保存过程很有效。
我的问题:如何保存调查并在保存后重定向用户?
我感谢任何帮助。
由于
答案 0 :(得分:1)
执行此操作的一种方法是向overview.aspx页面添加一些代码,以便用户在已填写调查时重定向到感谢页面。看看下面的代码就是这么做的。
一些注意事项:
最后请注意以下代码中的一些// TODO注释,您可能想要解决这些问题。
// TODO: Change this to the name of your survey.
var listName = 'Test Survey';
// TODO: Hide the Overview DIV or the whole page.
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', init);
function init()
{
var clientContext = new SP.ClientContext.get_current();
var oWeb = clientContext.get_web();
var oList = clientContext.get_web().get_lists().getByTitle(listName);
var camlQuery = new SP.CamlQuery();
var query = "<View><Query><Where>" +
"<Eq><FieldRef Name='Author' LookupId='TRUE' /><Value Type='Integer'>" + _spPageContextInfo.userId + "</Value></Eq>" +
"</Where></Query></View>"
camlQuery.set_viewXml(query);
this.listItems = oList.getItems(camlQuery);
clientContext.load(this.listItems);
clientContext.executeQueryAsync(Function.createDelegate(this, onItemsLoaded), Function.createDelegate(this, onQueryFailed));
}
function onItemsLoaded(sender, args)
{
if (QueryString.disableThankYou != 1 && this.listItems.get_count() == 1)
{
// TODO: Do your redirect here.
alert('redirecting');
}
else
{
// TODO: Show the Overview DIV.
alert('showing div');
}
}
function onQueryFailed(sender, args)
{
// Todo handle error
alert('Error');
}
var QueryString = function () {
// This function is anonymous, is executed immediately and
// the return value is assigned to QueryString!
var query_string = {};
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
// If first entry with this name
if (typeof query_string[pair[0]] === "undefined") {
query_string[pair[0]] = decodeURIComponent(pair[1]);
// If second entry with this name
} else if (typeof query_string[pair[0]] === "string") {
var arr = [ query_string[pair[0]],decodeURIComponent(pair[1]) ];
query_string[pair[0]] = arr;
// If third or later entry with this name
} else {
query_string[pair[0]].push(decodeURIComponent(pair[1]));
}
}
return query_string;
}();