当前位置:  开发笔记 > 编程语言 > 正文

Python的爬虫程序编写框架Scrapy入门学习教程

Python的一大优势就是可以轻松制作Web爬虫,而超高人气的Scrapy则是名副其实的Python编写爬虫的利器,这里我们就来看一下Python的爬虫程序编写框架Scrapy入门学习教程:
1. Scrapy简介
Scrapy是一个为了爬取网站数据,提取结构性数据而编写的应用框架。 可以应用在包括数据挖掘,信息处理或存储历史数据等一系列的程序中。
其最初是为了页面抓取 (更确切来说, 网络抓取 )所设计的, 也可以应用在获取API所返回的数据(例如 Amazon Associates Web Services ) 或者通用的网络爬虫。Scrapy用途广泛,可以用于数据挖掘、监测和自动化测试
Scrapy 使用了 Twisted异步网络库来处理网络通讯。整体架构大致如下

201672163134410.png (550×388)

Scrapy主要包括了以下组件:

(1)引擎(Scrapy): 用来处理整个系统的数据流处理, 触发事务(框架核心)

(2)调度器(Scheduler): 用来接受引擎发过来的请求, 压入队列中, 并在引擎再次请求的时候返回. 可以想像成一个URL(抓取网页的网址或者说是链接)的优先队列, 由它来决定下一个要抓取的网址是什么, 同时去除重复的网址

(3)下载器(Downloader): 用于下载网页内容, 并将网页内容返回给蜘蛛(Scrapy下载器是建立在twisted这个高效的异步模型上的)

(4)爬虫(Spiders): 爬虫是主要干活的, 用于从特定的网页中提取自己需要的信息, 即所谓的实体(Item)。用户也可以从中提取出链接,让Scrapy继续抓取下一个页面

项目管道(Pipeline): 负责处理爬虫从网页中抽取的实体,主要的功能是持久化实体、验证实体的有效性、清除不需要的信息。当页面被爬虫解析后,将被发送到项目管道,并经过几个特定的次序处理数据。

(5)下载器中间件(Downloader Middlewares): 位于Scrapy引擎和下载器之间的框架,主要是处理Scrapy引擎与下载器之间的请求及响应。

(6)爬虫中间件(Spider Middlewares): 介于Scrapy引擎和爬虫之间的框架,主要工作是处理蜘蛛的响应输入和请求输出。

(7)调度中间件(Scheduler Middewares): 介于Scrapy引擎和调度之间的中间件,从Scrapy引擎发送到调度的请求和响应。

Scrapy运行流程大概如下:

首先,引擎从调度器中取出一个链接(URL)用于接下来的抓取
引擎把URL封装成一个请求(Request)传给下载器,下载器把资源下载下来,并封装成应答包(Response)
然后,爬虫解析Response
若是解析出实体(Item),则交给实体管道进行进一步的处理。
若是解析出的是链接(URL),则把URL交给Scheduler等待抓取

2. 安装Scrapy
使用以下命令:

sudo pip install virtualenv #安装虚拟环境工具
virtualenv ENV #创建一个虚拟环境目录
source ./ENV/bin/active #激活虚拟环境
pip install Scrapy
#验证是否安装成功
pip list

#输出如下
cffi (0.8.6)
cryptography (0.6.1)
cssselect (0.9.1)
lxml (3.4.1)
pip (1.5.6)
pycparser (2.10)
pyOpenSSL (0.14)
queuelib (1.2.2)
Scrapy (0.24.4)
setuptools (3.6)
six (1.8.0)
Twisted (14.0.2)
w3lib (1.10.0)
wsgiref (0.1.2)
zope.interface (4.1.1)

更多虚拟环境的操作可以查看我的博文

3. Scrapy Tutorial
在抓取之前, 你需要新建一个Scrapy工程. 进入一个你想用来保存代码的目录,然后执行:

$ scrapy startproject tutorial

这个命令会在当前目录下创建一个新目录 tutorial, 它的结构如下:

.
├── scrapy.cfg
└── tutorial
 ├── __init__.py
 ├── items.py
 ├── pipelines.py
 ├── settings.py
 └── spiders
  └── __init__.py

这些文件主要是:

(1)scrapy.cfg: 项目配置文件
(2)tutorial/: 项目python模块, 之后您将在此加入代码
(3)tutorial/items.py: 项目items文件
(4)tutorial/pipelines.py: 项目管道文件
(5)tutorial/settings.py: 项目配置文件
(6)tutorial/spiders: 放置spider的目录

3.1. 定义Item
Items是将要装载抓取的数据的容器,它工作方式像 python 里面的字典,但它提供更多的保护,比如对未定义的字段填充以防止拼写错误

通过创建scrapy.Item类, 并且定义类型为 scrapy.Field 的类属性来声明一个Item.
我们通过将需要的item模型化,来控制从 dmoz.org 获得的站点数据,比如我们要获得站点的名字,url 和网站描述,我们定义这三种属性的域。在 tutorial 目录下的 items.py 文件编辑

from scrapy.item import Item, Field


class DmozItem(Item):
 # define the fields for your item here like:
 name = Field()
 description = Field()
 url = Field()

3.2. 编写Spider
Spider 是用户编写的类, 用于从一个域(或域组)中抓取信息, 定义了用于下载的URL的初步列表, 如何跟踪链接,以及如何来解析这些网页的内容用于提取items。

要建立一个 Spider,继承 scrapy.Spider 基类,并确定三个主要的、强制的属性:

name:爬虫的识别名,它必须是唯一的,在不同的爬虫中你必须定义不同的名字.
start_urls:包含了Spider在启动时进行爬取的url列表。因此,第一个被获取到的页面将是其中之一。后续的URL则从初始的URL获取到的数据中提取。我们可以利用正则表达式定义和过滤需要进行跟进的链接。
parse():是spider的一个方法。被调用时,每个初始URL完成下载后生成的 Response 对象将会作为唯一的参数传递给该函数。该方法负责解析返回的数据(response data),提取数据(生成item)以及生成需要进一步处理的URL的 Request 对象。
这个方法负责解析返回的数据、匹配抓取的数据(解析为 item )并跟踪更多的 URL。
在 /tutorial/tutorial/spiders 目录下创建 dmoz_spider.py

import scrapy

class DmozSpider(scrapy.Spider):
 name = "dmoz"
 allowed_domains = ["dmoz.org"]
 start_urls = [
  "http://www.dmoz.org/Computers/Programming/Languages/Python/Books/",
  "http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/"
 ]

 def parse(self, response):
  filename = response.url.split("/")[-2]
  with open(filename, 'wb') as f:
   f.write(response.body)

3.3. 爬取
当前项目结构

├── scrapy.cfg
└── tutorial
 ├── __init__.py
 ├── items.py
 ├── pipelines.py
 ├── settings.py
 └── spiders
  ├── __init__.py
  └── dmoz_spider.py

到项目根目录, 然后运行命令:

$ scrapy crawl dmoz

运行结果:

2014-12-15 09:30:59+0800 [scrapy] INFO: Scrapy 0.24.4 started (bot: tutorial)
2014-12-15 09:30:59+0800 [scrapy] INFO: Optional features available: ssl, http11
2014-12-15 09:30:59+0800 [scrapy] INFO: Overridden settings: {'NEWSPIDER_MODULE': 'tutorial.spiders', 'SPIDER_MODULES': ['tutorial.spiders'], 'BOT_NAME': 'tutorial'}
2014-12-15 09:30:59+0800 [scrapy] INFO: Enabled extensions: LogStats, TelnetConsole, CloseSpider, WebService, CoreStats, SpiderState
2014-12-15 09:30:59+0800 [scrapy] INFO: Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddleware, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, ChunkedTransferMiddleware, DownloaderStats
2014-12-15 09:30:59+0800 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
2014-12-15 09:30:59+0800 [scrapy] INFO: Enabled item pipelines:
2014-12-15 09:30:59+0800 [dmoz] INFO: Spider opened
2014-12-15 09:30:59+0800 [dmoz] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2014-12-15 09:30:59+0800 [scrapy] DEBUG: Telnet console listening on 127.0.0.1:6023
2014-12-15 09:30:59+0800 [scrapy] DEBUG: Web service listening on 127.0.0.1:6080
2014-12-15 09:31:00+0800 [dmoz] DEBUG: Crawled (200) http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/>; (referer: None)
2014-12-15 09:31:00+0800 [dmoz] DEBUG: Crawled (200) http://www.dmoz.org/Computers/Programming/Languages/Python/Books/>; (referer: None)
2014-12-15 09:31:00+0800 [dmoz] INFO: Closing spider (finished)
2014-12-15 09:31:00+0800 [dmoz] INFO: Dumping Scrapy stats:
 {'downloader/request_bytes': 516,
  'downloader/request_count': 2,
  'downloader/request_method_count/GET': 2,
  'downloader/response_bytes': 16338,
  'downloader/response_count': 2,
  'downloader/response_status_count/200': 2,
  'finish_reason': 'finished',
  'finish_time': datetime.datetime(2014, 12, 15, 1, 31, 0, 666214),
  'log_count/DEBUG': 4,
  'log_count/INFO': 7,
  'response_received_count': 2,
  'scheduler/dequeued': 2,
  'scheduler/dequeued/memory': 2,
  'scheduler/enqueued': 2,
  'scheduler/enqueued/memory': 2,
  'start_time': datetime.datetime(2014, 12, 15, 1, 30, 59, 533207)}
2014-12-15 09:31:00+0800 [dmoz] INFO: Spider closed (finished)

3.4. 提取Items
3.4.1. 介绍Selector
从网页中提取数据有很多方法。Scrapy使用了一种基于 XPath 或者 CSS 表达式机制: Scrapy Selectors

出XPath表达式的例子及对应的含义:

  • /html/head/title: 选择HTML文档中 标签内的 元素</li> <li>/html/head/title/text(): 选择 <title> 元素内的文本</li> <li>//td: 选择所有的 <td> 元素</li> <li>//p[@class="mine"]: 选择所有具有class="mine" 属性的 p 元素</li> </ul> <p>等多强大的功能使用可以查看XPath tutorial</p> <p>为了方便使用 XPaths,Scrapy 提供 Selector 类, 有四种方法 :</p> <ul> <li>xpath():返回selectors列表, 每一个selector表示一个xpath参数表达式选择的节点.</li> <li>css() : 返回selectors列表, 每一个selector表示CSS参数表达式选择的节点</li> <li>extract():返回一个unicode字符串,该字符串为XPath选择器返回的数据</li> <li>re(): 返回unicode字符串列表,字符串作为参数由正则表达式提取出来</li> </ul> <p><strong>3.4.2. 取出数据<br /> </strong></p> <ul> <li>首先使用谷歌浏览器开发者工具, 查看网站源码, 来看自己需要取出的数据形式(这种方法比较麻烦), 更简单的方法是直接对感兴趣的东西右键审查元素, 可以直接查看网站源码</li> </ul> <p>在查看网站源码后, 网站信息在第二个<ul>内</p> <p class="jb51code"> <pre class="brush:py;"> <ul class="directory-url" > <li><a href="http://www.pearsonhighered.com/educator/academic/product/0,,0130260363,00%2Ben-USS_01DBC.html" class="listinglink">Core Python Programming</a> - By Wesley J. Chun; Prentice Hall PTR, 2001, ISBN 0130260363. For experienced developers to improve extant skills; professional level examples. Starts by introducing syntax, objects, error handling, functions, classes, built-ins. [Prentice Hall] <p class="flag"><a href="/public/flag?cat=Computers%2FProgramming%2FLanguages%2FPython%2FBooks&url=http%3A%2F%2Fwww.pearsonhighered.com%2Feducator%2Facademic%2Fproduct%2F0%2C%2C0130260363%2C00%252Ben-USS_01DBC.html"><img src="/img/flag.png" alt="[!]" title="report an issue with this listing"></a></p> </li> ...省略部分... </ul> </pre> </p> <p>那么就可以通过一下方式进行提取数据</p> <p class="jb51code"> <pre class="brush:py;"> #通过如下命令选择每个在网站中的 <li> 元素: sel.xpath('//ul/li') #网站描述: sel.xpath('//ul/li/text()').extract() #网站标题: sel.xpath('//ul/li/a/text()').extract() #网站链接: sel.xpath('//ul/li/a/@href').extract() </pre> </p> <p>如前所述,每个 xpath() 调用返回一个 selectors 列表,所以我们可以结合 xpath() 去挖掘更深的节点。我们将会用到这些特性,所以:</p> <p class="jb51code"> <pre class="brush:py;"> for sel in response.xpath('//ul/li') title = sel.xpath('a/text()').extract() link = sel.xpath('a/@href').extract() desc = sel.xpath('text()').extract() print title, link, desc </pre> </p> <p>在已有的爬虫文件中修改代码</p> <p class="jb51code"> <pre class="brush:py;"> import scrapy class DmozSpider(scrapy.Spider): name = "dmoz" allowed_domains = ["dmoz.org"] start_urls = [ "http://www.dmoz.org/Computers/Programming/Languages/Python/Books/", "http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/" ] def parse(self, response): for sel in response.xpath('//ul/li'): title = sel.xpath('a/text()').extract() link = sel.xpath('a/@href').extract() desc = sel.xpath('text()').extract() print title, link, desc </pre> </p> <p><strong>3.4.3. 使用item<br /> </strong>Item对象是自定义的python字典,可以使用标准的字典语法来获取到其每个字段的值(字段即是我们之前用Field赋值的属性)</p> <p class="jb51code"> <pre class="brush:py;"> >>> item = DmozItem() >>> item['title'] = 'Example title' >>> item['title'] 'Example title' </pre> </p> <p>一般来说,Spider将会将爬取到的数据以 Item 对象返回, 最后修改爬虫类,使用 Item 来保存数据,代码如下</p> <p class="jb51code"> <pre class="brush:py;"> from scrapy.spider import Spider from scrapy.selector import Selector from tutorial.items import DmozItem class DmozSpider(Spider): name = "dmoz" allowed_domains = ["dmoz.org"] start_urls = [ "http://www.dmoz.org/Computers/Programming/Languages/Python/Books/", "http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/", ] def parse(self, response): sel = Selector(response) sites = sel.xpath('//ul[@class="directory-url"]/li') items = [] for site in sites: item = DmozItem() item['name'] = site.xpath('a/text()').extract() item['url'] = site.xpath('a/@href').extract() item['description'] = site.xpath('text()').re('-\s[^\n]*\\r') items.append(item) return items </pre> </p> <p><strong>3.5. 使用Item Pipeline<br /> </strong>当Item在Spider中被收集之后,它将会被传递到Item Pipeline,一些组件会按照一定的顺序执行对Item的处理。<br /> 每个item pipeline组件(有时称之为ItemPipeline)是实现了简单方法的Python类。他们接收到Item并通过它执行一些行为,同时也决定此Item是否继续通过pipeline,或是被丢弃而不再进行处理。<br /> 以下是item pipeline的一些典型应用:</p> <ul> <li>清理HTML数据</li> <li>验证爬取的数据(检查item包含某些字段)</li> <li>查重(并丢弃)</li> <li>将爬取结果保存,如保存到数据库、XML、JSON等文件中</li> </ul> <p>编写你自己的item pipeline很简单,每个item pipeline组件是一个独立的Python类,同时必须实现以下方法:</p> <p>(1)process_item(item, spider) #每个item pipeline组件都需要调用该方法,这个方法必须返回一个 Item (或任何继承类)对象,或是抛出 DropItem异常,被丢弃的item将不会被之后的pipeline组件所处理。</p> <p>#参数:</p> <p>item: 由 parse 方法返回的 Item 对象(Item对象)</p> <p>spider: 抓取到这个 Item 对象对应的爬虫对象(Spider对象)</p> <p>(2)open_spider(spider) #当spider被开启时,这个方法被调用。</p> <p>#参数:</p> <p>spider : (Spider object) – 被开启的spider</p> <p>(3)close_spider(spider) #当spider被关闭时,这个方法被调用,可以再爬虫关闭后进行相应的数据处理。</p> <p>#参数:</p> <p>spider : (Spider object) – 被关闭的spider</p> <p>为JSON文件编写一个items</p> <p class="jb51code"> <pre class="brush:py;"> from scrapy.exceptions import DropItem class TutorialPipeline(object): # put all words in lowercase words_to_filter = ['politics', 'religion'] def process_item(self, item, spider): for word in self.words_to_filter: if word in unicode(item['description']).lower(): raise DropItem("Contains forbidden word: %s" % word) else: return item </pre> </p> <p>在 settings.py 中设置ITEM_PIPELINES激活item pipeline,其默认为[]</p> <p class="jb51code"> <pre class="brush:py;"> ITEM_PIPELINES = {'tutorial.pipelines.FilterWordsPipeline': 1} </pre> </p> <p><strong>3.6. 存储数据<br /> </strong>使用下面的命令存储为json文件格式</p> <p>scrapy crawl dmoz -o items.json</p> <p><strong>4.示例<br /> 4.1最简单的spider(默认的Spider)<br /> </strong>用实例属性start_urls中的URL构造Request对象<br /> 框架负责执行request<br /> 将request返回的response对象传递给parse方法做分析</p> <p>简化后的源码:</p> <p class="jb51code"> <pre class="brush:py;"> class Spider(object_ref): """Base class for scrapy spiders. All spiders must inherit from this class. """ name = None def __init__(self, name=None, **kwargs): if name is not None: self.name = name elif not getattr(self, 'name', None): raise ValueError("%s must have a name" % type(self).__name__) self.__dict__.update(kwargs) if not hasattr(self, 'start_urls'): self.start_urls = [] def start_requests(self): for url in self.start_urls: yield self.make_requests_from_url(url) def make_requests_from_url(self, url): return Request(url, dont_filter=True) def parse(self, response): raise NotImplementedError BaseSpider = create_deprecated_class('BaseSpider', Spider) </pre> </p> <p>一个回调函数返回多个request的例子</p> <p class="jb51code"> <pre class="brush:py;"> import scrapyfrom myproject.items import MyItemclass MySpider(scrapy.Spider): name = 'example.com' allowed_domains = ['example.com'] start_urls = [ 'http://www.example.com/1.html', 'http://www.example.com/2.html', 'http://www.example.com/3.html', ] def parse(self, response): sel = scrapy.Selector(response) for h3 in response.xpath('//h3').extract(): yield MyItem(title=h3) for url in response.xpath('//a/@href').extract(): yield scrapy.Request(url, callback=self.parse) </pre> </p> <p>构造一个Request对象只需两个参数: URL和回调函数</p> <p><strong>4.2CrawlSpider<br /> </strong>通常我们需要在spider中决定:哪些网页上的链接需要跟进, 哪些网页到此为止,无需跟进里面的链接。CrawlSpider为我们提供了有用的抽象——Rule,使这类爬取任务变得简单。你只需在rule中告诉scrapy,哪些是需要跟进的。<br /> 回忆一下我们爬行mininova网站的spider.</p> <p class="jb51code"> <pre class="brush:py;"> class MininovaSpider(CrawlSpider): name = 'mininova' allowed_domains = ['mininova.org'] start_urls = ['http://www.mininova.org/yesterday'] rules = [Rule(LinkExtractor(allow=['/tor/\d+']), 'parse_torrent')] def parse_torrent(self, response): torrent = TorrentItem() torrent['url'] = response.url torrent['name'] = response.xpath("//h1/text()").extract() torrent['description'] = response.xpath("//p[@id='description']").extract() torrent['size'] = response.xpath("//p[@id='specifications']/p[2]/text()[2]").extract() return torrent </pre> </p> <p>上面代码中 rules的含义是:匹配/tor/\d+的URL返回的内容,交给parse_torrent处理,并且不再跟进response上的URL。<br /> 官方文档中也有个例子:</p> <p class="jb51code"> <pre class="brush:py;"> rules = ( # 提取匹配 'category.php' (但不匹配 'subsection.php') 的链接并跟进链接(没有callback意味着follow默认为True) Rule(LinkExtractor(allow=('category\.php', ), deny=('subsection\.php', ))), # 提取匹配 'item.php' 的链接并使用spider的parse_item方法进行分析 Rule(LinkExtractor(allow=('item\.php', )), callback='parse_item'), ) </pre> </p> <p>除了Spider和CrawlSpider外,还有XMLFeedSpider, CSVFeedSpider, SitemapSpider </div> <div class="article_ab" style="width: 720px;height: 100px;margin: 0 auto;margin-top: 15px;"> </div> <div class="article_recommend"> <div class="list_top">推荐阅读</div> <div class="ListItems"> <ul class="NewsList"> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/FanXiang_-dev-nu_442d7285.html" target="_blank" title="反向/ dev/null">反向/ dev/null</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《反向/dev/null》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/FanXiang_-dev-nu_442d7285.html" target="_blank" title="反向/ dev/null">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/AnZhuang_Swift_K_6672485b.html" target="_blank" title="安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链">安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链</a></h2> </div> <div class="NewsInfo"> <div class="NewsImg"> <a href="https://devbox.cn/p/AnZhuang_Swift_K_6672485b.html" target="_blank" title="安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链"><img src="https://img.devbox.cn/3cccf/16086/243/3acb21bfbb644443.png" width="120" height="70" alt="安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链"/></a> </div> <div class="NewsDesc" style="width:500px;margin-left:15px;"> 如何解决《安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/AnZhuang_Swift_K_6672485b.html" target="_blank" title="安装Swift开源Xcode工具链时出错:您无法在此位置安装Swift开源Xcode工具链">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/jQuery-_YuanSuSh_8ad0bf76.html" target="_blank" title="jQuery - 元素闪烁">jQuery - 元素闪烁</a></h2> </div> <div class="NewsInfo"> <div class="NewsImg"> <a href="https://devbox.cn/p/jQuery-_YuanSuSh_8ad0bf76.html" target="_blank" title="jQuery - 元素闪烁"><img src="https://img.devbox.cn/3cccf/16086/243/0d081b960db85daf.png" width="120" height="70" alt="jQuery - 元素闪烁"/></a> </div> <div class="NewsDesc" style="width:500px;margin-left:15px;"> 如何解决《jQuery-元素闪烁》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/jQuery-_YuanSuSh_8ad0bf76.html" target="_blank" title="jQuery - 元素闪烁">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/KuaChengXuJiHeMi_dadfbdc9.html" target="_blank" title="跨程序集和命名空间的依赖注入">跨程序集和命名空间的依赖注入</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《跨程序集和命名空间的依赖注入》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/KuaChengXuJiHeMi_dadfbdc9.html" target="_blank" title="跨程序集和命名空间的依赖注入">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/WeiShiMeJuBuBian_9711dc69.html" target="_blank" title="为什么局部变量是goroutine中匿名函数的不同参数">为什么局部变量是goroutine中匿名函数的不同参数</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《为什么局部变量是goroutine中匿名函数的不同参数》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/WeiShiMeJuBuBian_9711dc69.html" target="_blank" title="为什么局部变量是goroutine中匿名函数的不同参数">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/RuHeZai_Google_T_0f527fc8.html" target="_blank" title="如何在Google图表中设置hAxis标签日期的格式">如何在Google图表中设置hAxis标签日期的格式</a></h2> </div> <div class="NewsInfo"> <div class="NewsImg"> <a href="https://devbox.cn/p/RuHeZai_Google_T_0f527fc8.html" target="_blank" title="如何在Google图表中设置hAxis标签日期的格式"><img src="https://img.devbox.cn/3cccf/16086/243/d7c059f5a3503b7b.png" width="120" height="70" alt="如何在Google图表中设置hAxis标签日期的格式"/></a> </div> <div class="NewsDesc" style="width:500px;margin-left:15px;"> 如何解决《如何在Google图表中设置hAxis标签日期的格式》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/RuHeZai_Google_T_0f527fc8.html" target="_blank" title="如何在Google图表中设置hAxis标签日期的格式">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/RuHeJiang_py-tes_40c2812c.html" target="_blank" title="如何将py.test fixtures与Flask-SQLAlchemy和PostgreSQL结合起来?">如何将py.test fixtures与Flask-SQLAlchemy和PostgreSQL结合起来?</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《如何将py.testfixtures与Flask-SQLAlchemy和PostgreSQL结合起来?》经验,为你挑选了0个好方法。 ... <a href="https://devbox.cn/p/RuHeJiang_py-tes_40c2812c.html" target="_blank" title="如何将py.test fixtures与Flask-SQLAlchemy和PostgreSQL结合起来?">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/RuHeWei_akka-net_c9fcd904.html" target="_blank" title="如何为akka.net启用消息持久性">如何为akka.net启用消息持久性</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《如何为akka.net启用消息持久性》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/RuHeWei_akka-net_c9fcd904.html" target="_blank" title="如何为akka.net启用消息持久性">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Cong_iOSUIWebVie_04013e9c.html" target="_blank" title="从iOS UIWebView更新React组件中元素的值">从iOS UIWebView更新React组件中元素的值</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《从iOSUIWebView更新React组件中元素的值》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/Cong_iOSUIWebVie_04013e9c.html" target="_blank" title="从iOS UIWebView更新React组件中元素的值">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Cordova-Geolocat_2744fc12.html" target="_blank" title="Cordova - Geolocation在不同设备上似乎非常不稳定">Cordova - Geolocation在不同设备上似乎非常不稳定</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《Cordova-Geolocation在不同设备上似乎非常不稳定》经验,为你挑选了0个好方法。 ... <a href="https://devbox.cn/p/Cordova-Geolocat_2744fc12.html" target="_blank" title="Cordova - Geolocation在不同设备上似乎非常不稳定">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/WuFaAnZhuangGong_dc791f3b.html" target="_blank" title="无法安装公司应用程序Codename One Windows手机">无法安装公司应用程序Codename One Windows手机</a></h2> </div> <div class="NewsInfo"> <div class="NewsImg"> <a href="https://devbox.cn/p/WuFaAnZhuangGong_dc791f3b.html" target="_blank" title="无法安装公司应用程序Codename One Windows手机"><img src="https://img.devbox.cn/3cccf/16086/243/89e8e7df87d832a6.png" width="120" height="70" alt="无法安装公司应用程序Codename One Windows手机"/></a> </div> <div class="NewsDesc" style="width:500px;margin-left:15px;"> 如何解决《无法安装公司应用程序CodenameOneWindows手机》经验,为你挑选了0个好方法。 ... <a href="https://devbox.cn/p/WuFaAnZhuangGong_dc791f3b.html" target="_blank" title="无法安装公司应用程序Codename One Windows手机">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/DaYinMiGongZhong_66666384.html" target="_blank" title="打印迷宫中最短路的长度">打印迷宫中最短路的长度</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《打印迷宫中最短路的长度》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/DaYinMiGongZhong_66666384.html" target="_blank" title="打印迷宫中最短路的长度">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/RuHeQueBaoRenYiS_dbebf2a6.html" target="_blank" title="如何确保任意数量的权重总和为1(Python)?">如何确保任意数量的权重总和为1(Python)?</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《如何确保任意数量的权重总和为1(Python)?》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/RuHeQueBaoRenYiS_dbebf2a6.html" target="_blank" title="如何确保任意数量的权重总和为1(Python)?">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/RuHeTongGuo_Grad_10bb033b.html" target="_blank" title="如何通过Gradle bootRun将Debug Flag传递给Spring Boot来查看AutoConfigure信息">如何通过Gradle bootRun将Debug Flag传递给Spring Boot来查看AutoConfigure信息</a></h2> </div> <div class="NewsInfo"> <div class="NewsImg"> <a href="https://devbox.cn/p/RuHeTongGuo_Grad_10bb033b.html" target="_blank" title="如何通过Gradle bootRun将Debug Flag传递给Spring Boot来查看AutoConfigure信息"><img src="https://img.devbox.cn/3cccf/16086/243/8e839f523b770d1d.png" width="120" height="70" alt="如何通过Gradle bootRun将Debug Flag传递给Spring Boot来查看AutoConfigure信息"/></a> </div> <div class="NewsDesc" style="width:500px;margin-left:15px;"> 如何解决《如何通过GradlebootRun将DebugFlag传递给SpringBoot来查看AutoConfigure信息》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/RuHeTongGuo_Grad_10bb033b.html" target="_blank" title="如何通过Gradle bootRun将Debug Flag传递给Spring Boot来查看AutoConfigure信息">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Zai_Swift3_FaBuH_fe7e468b.html" target="_blank" title="在Swift 3发布后,Swift 2应用程序是否可以运行?">在Swift 3发布后,Swift 2应用程序是否可以运行?</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《在Swift3发布后,Swift2应用程序是否可以运行?》经验,为你挑选了2个好方法。 ... <a href="https://devbox.cn/p/Zai_Swift3_FaBuH_fe7e468b.html" target="_blank" title="在Swift 3发布后,Swift 2应用程序是否可以运行?">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Zai_XcodeInterfa_324d3f6e.html" target="_blank" title="在Xcode Interface Builder中为不同大小的类设置不同的乘数值?">在Xcode Interface Builder中为不同大小的类设置不同的乘数值?</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《在XcodeInterfaceBuilder中为不同大小的类设置不同的乘数值?》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/Zai_XcodeInterfa_324d3f6e.html" target="_blank" title="在Xcode Interface Builder中为不同大小的类设置不同的乘数值?">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/R_ZhongDeDongTai_526c7d09.html" target="_blank" title="R中的动态selectInput闪亮">R中的动态selectInput闪亮</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《R中的动态selectInput闪亮》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/R_ZhongDeDongTai_526c7d09.html" target="_blank" title="R中的动态selectInput闪亮">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/GuDingDianDaiBia_c21b4f37.html" target="_blank" title="固定点代表性的bifunctors">固定点代表性的bifunctors</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《固定点代表性的bifunctors》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/GuDingDianDaiBia_c21b4f37.html" target="_blank" title="固定点代表性的bifunctors">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Swift`rethrows`__17eb0020.html" target="_blank" title="Swift`rethrows`函数作为参数传递导致编译器错误">Swift`rethrows`函数作为参数传递导致编译器错误</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《Swift`rethrows`函数作为参数传递导致编译器错误》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/Swift`rethrows`__17eb0020.html" target="_blank" title="Swift`rethrows`函数作为参数传递导致编译器错误">[详细]</a> </div> <div style="clear:both"></div> </li> <li> <div class="NewTitle"> <a class="cat" href="/tag/程序员" title="程序员" target="_blank">程序员<i></i></a> <h2><a href="https://devbox.cn/p/Golang_BingXingY_0633259d.html" target="_blank" title="Golang并行映射访问范围">Golang并行映射访问范围</a></h2> </div> <div class="NewsInfo"> <div class="NewsDesc" > 如何解决《Golang并行映射访问范围》经验,为你挑选了1个好方法。 ... <a href="https://devbox.cn/p/Golang_BingXingY_0633259d.html" target="_blank" title="Golang并行映射访问范围">[详细]</a> </div> <div style="clear:both"></div> </li> </ul> </div> </div> <div class="article_cmnt" style="display: none;"> <div class="cmnt_title">吐了个 "CAO" !</div> <form action="" method="post"> <div class="cmnt_text"> <textarea class="ping-txt" onfocus="ck_txt(this);" onblur="ck_txt2(this);" id="ping-txt" name="ping-txt" >吐个槽吧,看都看了</textarea> </div> <div class="cmnt_cmt"> <div class="cmnt_login_box"> <a href="https://www.php1.cn/?s=user/login/index&from=">会员登录</a> | <a href="http://www.php1.cn/?s=user/reg/index">用户注册</a> </div> <div class="post_cmnt"><input type="button" value="吐  槽" onclick="post_ping();" /></div> </div> </form> </div> </div> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shCore.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushBash.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushCpp.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushCSharp.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushCss.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushDelphi.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushDiff.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushGroovy.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushJava.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushJScript.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushPhp.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushPlain.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushPython.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushRuby.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushScala.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushSql.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushVb.js"></script> <script type="text/javascript" src="/style/SyntaxHighlighter/scripts/shBrushXml.js"></script> <link type="text/css" rel="stylesheet" href="/style/SyntaxHighlighter/styles/shCore.css"/> <link type="text/css" rel="stylesheet" href="/style/SyntaxHighlighter/styles/shThemeLiuQing.css"/> <style> .syntaxhighlighter{ width: 740px; padding-top:40px;padding-bottom:20px; border: 1px solid #333; background: url("/style/SyntaxHighlighter/top_bg.svg"); background-size: 43px; background-repeat: no-repeat; margin-bottom: -7px; border-radius: 15px; background-position: 16px 12px; padding-left: 10px; } .gutter{ display: none; } </style> <script type="text/javascript"> SyntaxHighlighter.all(); </script> <div class="article_right"> <div class="profile"> <div class="author"> <!-- 未登录 --> <div class="author-avatar"> <a href="/u/zhongqingzhizaomanhuashe"> <img src="https://img.devbox.cn/3cdc5/64c2/cd5/f53c066002fa970f.png" class="lazy-img" data-url="" alt="devbox"> </a> </div> <div class="author-name"> 重庆制造漫画社 </div> <div class="author-intro"> 这个屌丝很懒,什么也没留下! </div> <div class="author-bt"> <a href="javascript:;" id="follow_bt" onclick="follow();" class="skins-btn" title="关注作者"> <svg class="icon" style="width: 15px;height: 15px;margin-top:-3px;margin-right:5px;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1428"><path d="M1024 409.6H614.4V0H409.6v409.6H0v204.8h409.6v409.6h204.8V614.4h409.6z" fill="#ffffff" p-id="1429"></path></svg> 关注作者</a> </div> </div> </div> <div class="tools"> <div class="tools_top">Tags | 热门标签</div> <div class="tools_box"> <ul> <li> <a href="/tag/actionscrip" target="_blank" title="actionscrip">actionscrip</a> </li> <li> <a href="/tag/bash" target="_blank" title="bash">bash</a> </li> <li> <a href="/tag/c#" target="_blank" title="c#">c#</a> </li> <li> <a href="/tag/c++" target="_blank" title="c++">c++</a> </li> <li> <a href="/tag/c语言" target="_blank" title="c语言">c语言</a> </li> <li> <a href="/tag/erlang" target="_blank" title="erlang">erlang</a> </li> <li> <a href="/tag/flutter" target="_blank" title="flutter">flutter</a> </li> <li> <a href="/tag/go" target="_blank" title="go">go</a> </li> <li> <a href="/tag/golang" target="_blank" title="golang">golang</a> </li> <li> <a href="/tag/java" target="_blank" title="java">java</a> </li> <li> <a href="/tag/javascript" target="_blank" title="javascript">javascript</a> </li> <li> <a href="/tag/lua" target="_blank" title="lua">lua</a> </li> <li> <a href="/tag/node.js" target="_blank" title="node.js">node.js</a> </li> <li> <a href="/tag/perl" target="_blank" title="perl">perl</a> </li> <li> <a href="/tag/php" target="_blank" title="php">php</a> </li> <li> <a href="/tag/python" target="_blank" title="python">python</a> </li> <li> <a href="/tag/scala" target="_blank" title="scala">scala</a> </li> <li> <a href="/tag/typescript" target="_blank" title="typescript">typescript</a> </li> <div style="clear: both"></div> </ul> </div> </div> <div class="rank"> <div class="rank_top">RankList | 热门文章</div> <div class="rank_box"> <ul> <li> <b >1</b><a href="https://devbox.cn/p/JiangDaiKongGeZi_947cf0ea.html" title="将带空格字符的字符串参数传递给内核模块" target="_blank">将带空格字符的字符串参数传递给内核模块</a> </li> <li> <b >2</b><a href="https://devbox.cn/p/Git_FenZhiZai_Je_871b542f.html" title="Git分支在Jenkins中用groovy脚本选择" target="_blank">Git分支在Jenkins中用groovy脚本选择</a> </li> <li> <b >3</b><a href="https://devbox.cn/p/LaiZi_UITableVie_35ae711e.html" title="来自UITableView的错误值:iOS8中的rowHeight" target="_blank">来自UITableView的错误值:iOS8中的rowHeight</a> </li> <li> <b >4</b><a href="https://devbox.cn/p/ShiYong_jasmine__68794056.html" title="使用jasmine模拟函数调用" target="_blank">使用jasmine模拟函数调用</a> </li> <li> <b >5</b><a href="https://devbox.cn/p/SharePoint2010We_928dab37.html" title="SharePoint 2010 Web服务上的Java JBoss 401错误" target="_blank">SharePoint 2010 Web服务上的Java JBoss 401错误</a> </li> <li> <b class="black">6</b><a href="https://devbox.cn/p/ZaiHuiTuXiangSha_f0b1c36f.html" title="在绘图箱上绘图 - 如何及时跟上鼠标移动?" target="_blank">在绘图箱上绘图 - 如何及时跟上鼠标移动?</a> </li> <li> <b class="black">7</b><a href="https://devbox.cn/p/RuHeZaiMeiGe_-lt_3b870039.html" title="如何在每个<ul>的最后一个<li>之后删除所有文本?" target="_blank">如何在每个<ul>的最后一个<li>之后删除所有文本?</a> </li> <li> <b class="black">8</b><a href="https://devbox.cn/p/BaiDongJiaShe_-__e8664b70.html" title="摆动假设 - 红宝石中字符串数组的组合或排列" target="_blank">摆动假设 - 红宝石中字符串数组的组合或排列</a> </li> <li> <b class="black">9</b><a href="https://devbox.cn/p/Stataforeach_Hui_6aa841cd.html" title="Stata foreach回归循环错误" target="_blank">Stata foreach回归循环错误</a> </li> <li> <b class="black">10</b><a href="https://devbox.cn/p/ShiYong_okHttp_X_eeebcacc.html" title="使用okHttp信任所有证书" target="_blank">使用okHttp信任所有证书</a> </li> <li> <b class="black">11</b><a href="https://devbox.cn/p/mock-patch--_Mei_88bc96cf.html" title="mock.patch()没有修补类调用函数调用内的几个级别的类" target="_blank">mock.patch()没有修补类调用函数调用内的几个级别的类</a> </li> <li> <b class="black">12</b><a href="https://devbox.cn/p/RuHeZhaoDao_R_Zh_32f65a72.html" title="如何找到R中最长的相同数字" target="_blank">如何找到R中最长的相同数字</a> </li> <li> <b class="black">13</b><a href="https://devbox.cn/p/RuHeZai_PX_Zhong_88e1df20.html" title="如何在PX中设置DP的高度和宽度" target="_blank">如何在PX中设置DP的高度和宽度</a> </li> <li> <b class="black">14</b><a href="https://devbox.cn/p/RuHeShiYong_Boot_3b284009.html" title="如何使用Bootstrap在选项卡组件的末尾显示文本/按钮?" target="_blank">如何使用Bootstrap在选项卡组件的末尾显示文本/按钮?</a> </li> <li> <b class="black">15</b><a href="https://devbox.cn/p/RuHeZai_Spring_S_ef33af7b.html" title="如何在Spring数据JPA中做AND和多个OR参数方法" target="_blank">如何在Spring数据JPA中做AND和多个OR参数方法</a> </li> <li> <b class="black">16</b><a href="https://devbox.cn/p/xcode6-1_GengXin_c36b01af.html" title="xcode 6.1更新后找不到#import <libxml/tree.h>文件" target="_blank">xcode 6.1更新后找不到#import <libxml/tree.h>文件</a> </li> <li> <b class="black">17</b><a href="https://devbox.cn/p/Zai_Go_QiePianZh_e091032b.html" title="在Go切片中,为什么s [lo:hi]在元素hi-1处结束?" target="_blank">在Go切片中,为什么s [lo:hi]在元素hi-1处结束?</a> </li> <li> <b class="black">18</b><a href="https://devbox.cn/p/Rust_MeiYouYunXi_37830012.html" title="Rust没有运行helloworld示例" target="_blank">Rust没有运行helloworld示例</a> </li> <li> <b class="black">19</b><a href="https://devbox.cn/p/RuHeZaiChuangJia_e5cb5bf3.html" title="如何在创建新类时指定超类" target="_blank">如何在创建新类时指定超类</a> </li> <li> <b class="black">20</b><a href="https://devbox.cn/p/Google_XieZuoPin_ca840064.html" title="Google协作平台API全文搜索不适用于非西方语言" target="_blank">Google协作平台API全文搜索不适用于非西方语言</a> </li> </ul> </div> </div> </div> <div style="clear: both;"></div> </div> <script type="application/javascript"> function follow(uid) { var myDate = new Date(); $.get("/user/follow/post?uid="+uid+"&stime="+myDate.getMilliseconds(),null,function(response){ if(response=="1"){ tips('关注成功!') $("#follow_bt").html('<svg class="icon" style="width: 15px;height: 15px;margin-top:-3px;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1912"><path d="M984.554971 729.818319L757.2752 1001.934666c-23.431608 29.784785-63.349596 27.462118-91.084969 0l-148.309102-117.727323a34.156864 34.156864 0 0 1 34.156863-59.159688L711.732715 956.392181l224.524451-274.871667a34.156864 34.156864 0 1 1 48.297805 48.297805zM506.791534 592.052303c-6.284863 6.968-12.569726 0-22.771243 0-171.103115 0-386.928951 164.066802-386.928951 358.396584 0 18.740733-15.347817 33.951922-34.316262 33.951922a34.156864 34.156864 0 0 1-34.361805-33.951922c0-160.582801 134.122618-342.616113 323.283329-400.181814C261.271998 499.783228 210.765382 406.011252 210.765382 296.026151 210.765382 133.530566 342.428706 0 506.791534 0s296.026151 133.530566 296.026151 296.026151c0 161.630279-132.892971 294.614334-296.026151 296.026152z m0-523.738576c-126.243768 0-227.712424 102.903244-227.712424 227.712424s101.468656 227.712424 227.712424 227.712424 227.712424-102.903244 227.712424-227.712424S633.035302 68.313727 506.791534 68.313727z" p-id="1913"></path></svg>\n' +"已关注") }else if(response=="0"){ tips('已取消关注!') $("#follow_bt").html('<svg class="icon" style="width: 15px;height: 15px;margin-top:-3px;margin-right:5px;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1428"><path d="M1024 409.6H614.4V0H409.6v409.6H0v204.8h409.6v409.6h204.8V614.4h409.6z" fill="#ffffff" p-id="1429"></path></svg>\n' + "关注作者") }else if(response=="-2"){ tips("请先登录!") }else{ tips("关注失败!") } }); } function like(sid) { var myDate = new Date(); $.get("/blog/article/like?sid="+sid+"&stime="+myDate.getMilliseconds(),null,function(response){ if(response!="-1"){ $("#like_num").html(response+"赞") }else{ tips("关注失败!") } }); } </script> <div class="bottom-bar"> DevBox开发工具箱 | 专业的在线开发工具网站    <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802040832" style="color:#444;"><img src="https://img.json1.cn/3cd4a/21981/c5a/4df0b47476da9030.png"/>京公网安备 11010802040832号</a>  |  <a href="https://beian.miit.gov.cn/" target="_blank" >京ICP备19059560号-6</a> <BR /> Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有 <BR /> </div></body> </html>