addFeaturesToScene
ajaxを使用して新しいURLを作成する機能があります。
関数が終了したら、新しいサイトに自動的に移動する必要があります
コードは次のとおりです。
function addFeatureToScene(featureNid, sceneNid)
{
alert(featureNid + " -> " + sceneNid);
$.ajax({
type : 'GET',
url : '/copy-feature-and-add-it-to-scene/' + featureNid + '/' + sceneNid,
dataType : 'json',
async : false,
success : function(reply) {
//Code to open a page with a new url?
}
});
}