我有这个功能:
%GIF
然后我使用原型方法将变量关联到此函数中:
function UIAlerts() {}
之后,我将一个函数推送到这个数组:
UIAlerts.prototype.questions = []
执行click事件后,执行以下代码:
UIAlerts.prototype.questions.push(function(){
//do stuff
});
问题是切片不能删除函数数组的第一个部分。有什么想法吗?
答案 0 :(得分:6)
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^category/([^/]+)/?$ /handle.php?q=category&cat_name=$1 [L]
RewriteRule ^([^/]+)/?$ /handle.php?q=post_title&title=$1 [L]
没有修改数组,它会返回该部分的副本。
您正在寻找slice
。