我正在尝试执行以下操作,有人可以帮忙吗?
我创建了一个接受 json 对象的 php 文件。该网页旨在直接向用户显示。
如何在不使用 html 表单的情况下从另一个页面打开此页面?我需要一个简单的解决方案,如下所示。
Javascript(如果需要,支持 JQuery):
var JsonParamToPass=jsonObj;
var postData=JsonParamToPass;
window.open("www.myAwesomePageThatAcceptsPostData.com",'_blank',method=POST,postData);
//the last two variables are made up and i need to find a way to do that, that can easily be given to other people to use.
我想避免使用 ajax 请求并将输出写入新页面,并且我想尽可能避免创建表单。
谢谢,