如果没有 ajax,使用 javascript 我已经设法通过触发链接上的参数将字符串(文件的完整路径)传递给服务器以进行解析。
1.- 用户拿起一个文件
<?php echo $this->Form->file('prodfile', array('onchange' => "getFile();")); ?>
(getFile() only saves current href on my links - step 3-)
2.- 用户手动将完整路径复制到文本输入中。(不优雅但解决了我的问题)。
echo $this->Form->input('Project.fullPathInput', array('label' => 'Copied Path', 'id' => 'fullPath', 'onchange' => "assignPath();"));
(assignPath() updates href on all my original links with the fullpath -since I don't know which one the user will click-
3.- 这是原始链接(其中几个是动态创建的
echo $this->Html->link(__('LFF'), array('controller' => 'qcas', 'action' => 'loadProdFromFile', 'dirId' => $dirs['id']), array('name' => 'lff', 'id' => 'lff' . $i));
function getFile() {
document.getElementById('fullPath').value = '';
var sHref = document.getElementsByName('lff');
var len = sHref.length;
// only the first time, save original hRef
if ( preValues.length == 0) {
for (var i=0; i<len; ++i) {
preValues[i] = sHref[i].href;
}
} else {
for (var i=0; i<len; ++i) {
sHref[i].href = preValues[i];
}
}
}
function assignPath() {
var finalPath = document.getElementById('fullPath').value;
var sHref = document.getElementsByName('lff');
var len = sHref.length;
for (var i=0; i<len; ++i) {
sHref[i].href = sHref[i].href + '/filePath:'+finalPath;
}
}
只是想分享以防有人面临类似的情况。
实际上,我已经使用 jQuery ajax 重新制作了整个东西,但没有用户选择文件。(作为用户的第二个选项)。