jquery ファイル ツリー プラグインを理解しようとしていますが、ファイル パスに問題があります。問題は、jquery 呼び出しがルート ディレクトリを設定し、それが "/" に設定されている場合は、それをサーバー ディレクトリのパスにしたいということです。そこで、jquery コードがやり取りするサーバー コードでこれを設定します。
jquery 呼び出しは次のとおりです。
<script type="text/javascript">
$(document).ready(function () {
root: "/", //Have made sure that the HomeController makes this correspond to the server application path or subfolder.
$('#result').fileTree({
script: 'Home/JqueryFileTree',
expandSpeed: 1000,
collapseSpeed: 1000,
multiFolder: false
}, function (file) {
alert(file); //This shows the name of the file if you click it
});
});
</script>
そして、Web アプリケーション内の場所に対応するようにルート "/" を設定する方法は次のとおりです。
if (Request.Form["dir"] == null || Request.Form["dir"].Length <= 0 || Request.Form["dir"] == "/")
dir = Server.MapPath(Request.ApplicationPath); //Works but creates a strange mix of slashes and backslashes...
else
dir = Server.UrlDecode(Request.Form["dir"]);
これは、ファイル ツリーが正しいファイル ツリーを表示する限り、正常に機能します。しかし、問題は、ファイルをクリックし、jquery でアラート関数が呼び出されると、アラート ボックスに表示されるファイル パスが Windows パス (上記のルートとして指定されたもの) と URL (パスの相対終了部分)。例 c:\my documents\visual studio\MvcApplication\FileArea/Public/file.txt.
jquery ファイル ツリーの元のスクリプト サンプルのように、サーバー コードでルートを "/" に指定した場合、アラート ボックスには最後の相対部分しか表示されません。また、生成されたファイル ツリーで、Web アプリケーションのルートではなく、c: ドライブのルートを取得しました。
このパスを取得してファイルに何かを実行できるようにしたいので、このパスが問題になると予想しています。では、ここで何が起こっているのでしょうか。なぜパスがそのようになってしまうのでしょうか?どうすれば修正できますか? jquery で自分の Web アプリケーションに相対的なパスを指定する方法がわからないので、サーバー コードでそれを行うことしか考えられませんでした。いずれにせよ、1 つの形式を使用するように修正できる限り、とにかく絶対パス全体を使用することは良いことだと思います。しかし、誰かが私に方法を教えてもらえますか?
編集:それが役立つ場合は、実際のjquery fileTreeコードも投稿すると思いました:
// jQuery File Tree Plugin
//
// Version 1.01
//
// Cory S.N. LaViska
// A Beautiful Site (http://abeautifulsite.net/)
// 24 March 2008
//
// Visit http://abeautifulsite.net/notebook.php?article=58 for more information
//
// Usage: $('.fileTreeDemo').fileTree( options, callback )
//
// Options: root - root folder to display; default = /
// script - location of the serverside AJAX file to use; default = jqueryFileTree.php
// folderEvent - event to trigger expand/collapse; default = click
// expandSpeed - default = 500 (ms); use -1 for no animation
// collapseSpeed - default = 500 (ms); use -1 for no animation
// expandEasing - easing function to use on expand (optional)
// collapseEasing - easing function to use on collapse (optional)
// multiFolder - whether or not to limit the browser to one subfolder at a time
// loadMessage - Message to display while initial tree loads (can be HTML)
//
// History:
//
// 1.01 - updated to work with foreign characters in directory/file names (12 April 2008)
// 1.00 - released (24 March 2008)
//
// TERMS OF USE
//
// This plugin is dual-licensed under the GNU General Public License and the MIT License and
// is copyright 2008 A Beautiful Site, LLC.
//
if (jQuery) (function ($) {
$.extend($.fn, {
fileTree: function (o, h) {
// Defaults
if (!o) var o = {};
if (o.root == undefined) o.root = '/';
if (o.script == undefined) o.script = 'jqueryFileTree.php';
if (o.folderEvent == undefined) o.folderEvent = 'click';
if (o.expandSpeed == undefined) o.expandSpeed = 500;
if (o.collapseSpeed == undefined) o.collapseSpeed = 500;
if (o.expandEasing == undefined) o.expandEasing = null;
if (o.collapseEasing == undefined) o.collapseEasing = null;
if (o.multiFolder == undefined) o.multiFolder = true;
if (o.loadMessage == undefined) o.loadMessage = 'Loading...';
$(this).each(function () {
function showTree(c, t) {
$(c).addClass('wait');
$(".jqueryFileTree.start").remove();
$.post(o.script, { dir: t }, function (data) {
$(c).find('.start').html('');
$(c).removeClass('wait').append(data);
if (o.root == t) $(c).find('UL:hidden').show(); else $(c).find('UL:hidden').slideDown({ duration: o.expandSpeed, easing: o.expandEasing });
bindTree(c);
});
}
function bindTree(t) {
$(t).find('LI A').bind(o.folderEvent, function () {
if ($(this).parent().hasClass('directory')) {
if ($(this).parent().hasClass('collapsed')) {
// Expand
if (!o.multiFolder) {
$(this).parent().parent().find('UL').slideUp({ duration: o.collapseSpeed, easing: o.collapseEasing });
$(this).parent().parent().find('LI.directory').removeClass('expanded').addClass('collapsed');
}
$(this).parent().find('UL').remove(); // cleanup
showTree($(this).parent(), escape($(this).attr('rel').match(/.*\//)));
$(this).parent().removeClass('collapsed').addClass('expanded');
} else {
// Collapse
$(this).parent().find('UL').slideUp({ duration: o.collapseSpeed, easing: o.collapseEasing });
$(this).parent().removeClass('expanded').addClass('collapsed');
}
h($(this).attr('rel')); //Testing how to get the folder name to display... Works fine.
} else {
h($(this).attr('rel')); //Calls the callback event in the calling method on the page, with the rel attr as parameter
}
return false;
});
// Prevent A from triggering the # on non-click events
if (o.folderEvent.toLowerCase != 'click') $(t).find('LI A').bind('click', function () { return false; });
}
//ASN: I think it starts here, the stuff before are just definitions that need to be called here.
// Loading message
$(this).html('<ul class="jqueryFileTree start"><li class="wait">' + o.loadMessage + '<li></ul>');
// Get the initial file list
showTree($(this), escape(o.root));
});
}
});
})(jQuery);
要するに、ここでファイルパスがどのように機能するかわかりません。ルートとして「/」を指定するだけで相対パスとして機能するように見えますが (アラート ボックスには相対パスしか表示されないため)、コンピューターのルート (c:) のファイル ツリーが表示されます。では、これを使用して Web アプリケーションの相対パスを代わりに使用し、使用できる適切なパスを取得するにはどうすればよいでしょうか?
どんな助けでも大歓迎です!