Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 jQuery post() 方法创建下载链接,如下所示:
$.post('file.php', {name:'name', id:'id'}, function(data){ $('#downloadFrame').src = data.url; }); return true;
但总是 data.url 返回 null/unidentified,还创建一个表单并提交它可能适用于我的代码。我在论坛上搜索了很多帖子,但没有一个有效。
谢谢你。
您需要访问数组数据的零元素,所以使用data[0].url
data[0].url
改变
function(data){ $('#downloadFrame').src = data.url; });
到
function(data){ $('#downloadFrame').src = data[0].url; });