这个问题我用了一个上午终于解决了,需求是这样的:

A地址:域名/ProductView.jsp?lClassID=200

B地址:域名/goods.php?id=3

实现把用户输A地址跳到B地址,就是跳转的功能。

原先用我用最常的方法实现如:RewriteRule ^ProductView.jsp?lClassID=200$    goods.php?id=3 [L]
看上去是没有问题的,但在地址上输入跳转不了。后来网上查了一下资料如下:

规则:
引用自
文本
. 任意一个单字符
[chars] 字符类: "chars"中的任意一个字符
[^chars] 字符类: 不在"chars"中的字符
text1|text2 选择: text1 或 text2

量词
? 前面的字符出现 0 或 1 次
* 前面的字符出现 0 或 N 次(N > 0)
+ 前面的字符出现 1 或 N 次(N > 1

原来这样:?号把前面的p也作为参数了,p?(\?)就变成了$1,当在地址中输入http://www.geekso.com/ProductView.jslClassID=200 可实现跳转,但这显然不是需求那样的.
本来都想放弃用重写了,在网上又找了一下终于找到了,功夫不负有心人啊,
解决方法如下:

RewriteCond %{QUERY_STRING} ^lClassID=200$
RewriteRule ^ProductView\.jsp$ goods\.php\?id=3 [L]

我找到的相关资料:

把 /abc?id=123  =>  /def.php?id=123 的写法:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^id=(.+)$
RewriteRule ^/abc$ /def.php?sid=%1 [L]

RewriteRule 不会去匹配 ? 后面的字符串,需要用RewriteCond来匹配

Tags:

JavaScript的数组排序函数 sort方法,默认是按照ASCII 字符顺序进行升序排列。

arrayobj.sort(sortfunction);

参数:sortFunction

可选项。是用来确定元素顺序的函数的名称。如果这个参数被省略,那么元素将按照 ASCII 字符顺序进行升序排列。

sort 方法将 Array 对象进行适当的排序;在执行过程中并不会创建新的 Array 对象。

如果为 sortfunction 参数提供了一个函数,那么该函数必须返回下列值之一:

  • 负值,如果所传递的第一个参数比第二个参数小。
  • 零,如果两个参数相等。
  • 正值,如果第一个参数比第二个参数大。

以上的方法在一维的排序还是很方便的,但像SQL语句中的ORDER BY 一样的多键值排序由怎么做呢?

多维数组的多键值排序,则需要复杂一些,但不需要用循环解决。实际解决的道理是一样的 。

数字:

以下的例子是将数字的多维数组按照第5列,第9列,第3列的顺序排序,像SQL语句中的ORDER BY  col5,col9,col7。数字的时候可以直接两个项目相减,以结果作为返回值即可。

<script language=javascript>
   var myArray
= new Array();
   
for(var i=0;i<10;i++ )...{
       myArray[i]
=new Array();
       myArray[i][
0]=Math.floor(Math.random()*10);        

       myArray[i][
1]=Math.floor(Math.random()*10);
       myArray[i][
2]=Math.floor(Math.random()*10);
       myArray[i][
3]=Math.floor(Math.random()*10);
       myArray[i][
4]=Math.floor(Math.random()*10);
       myArray[i][
5]=Math.floor(Math.random()*10);
       myArray[i][
6]=Math.floor(Math.random()*10);
       myArray[i][
7]=Math.floor(Math.random()*10);
       myArray[i][
8]=Math.floor(Math.random()*10);
   }

   
   myArray.sort( function(x, y)
...{
       
return (x[0]==y[0])?((x[4]==y[4])?(x[8]-y[8]):(x[4]-y[4])):(x[2]-y[2])
   }
);

   
for(var i=0;i<myArray.length;i++ )...{
       document.write(myArray[i].join(
",") + "<br/>");
   }

</script>

字符:

字符的时候sortFunction中的项目不能像数字一样直接相减,需要调用str1.localeCompare( str2 )方法来作比较,从而满足返回值。以下是多维数组的第1,2列作排序的情况。

function sortFunction(array) ...{
   
return array.sort( function(x, y) ...{return (x[0]==y[0])?(x[1].localeCompare(y[1])):(x[0].localeCompare(y[0]))});
}

因此arrayObject.sort( sortFunction )的排序功能还是很强大的,终于能够实现了SQL语句中的ORDER BY 一样的功能。

Tags:
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]