1.在控制器中调用其他 扩展或者类 的方法时候,getCurrentUrl()方法 是获取的[当前控制器下方法]的路由,不是[其他 扩展或者类 方法]的路由!!! 2.getCurrentUrl()方法代码: /** * get the current url * @return string */ public static function getCurrentUrl() { $pageURL = 'http'; if (@$_SERVER["HTTPS"] == "on…
import re from collections import OrderedDict from django.conf import settings from django.utils.module_loading import import_string # for django 1.0 # from django.urls import RegexURLResolver, RegexURLPattern # for django 2.0 from django.urls.resolv…
function getUrlParam(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r!=null) return unescape(r[2]); return null; } //获取http://xxxx.com/index.html?abc=12…
方法不是很好. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Text.RegularExpressions; namespace _12获取局域网中的所有IP地址 { class Program { static void Main(string[] args) { IPAddress startIP = I…