如何使用JMeter 进行全链路压测

使用 JMeter 进行全链路压测:详细步骤指南

全链路压测旨在测试整个系统的性能,包括所有的组件和服务。通过 Apache JMeter 进行全链路压测,可以模拟真实用户行为,测试系统在高负载下的表现。以下是详细的步骤指南,分为准备阶段、测试设计、执行和结果分析四个主要部分。

1. 准备阶段

1.1 定义测试目标

在进行全链路压测之前,首先要明确测试的目标:

  • 响应时间:确定系统在不同负载下的响应时间。
  • 吞吐量:衡量系统在单位时间内处理的请求数。
  • 稳定性:验证系统在持续高负载下的稳定性。
  • 瓶颈识别:找出系统性能的瓶颈点。
1.2 环境准备

全链路压测需要在一个尽量接近生产环境的测试环境中进行。准备工作包括:

  • 硬件准备:配置与生产环境相似的硬件,包括服务器、数据库和网络设备。
  • 软件配置:安装与生产环境相同的操作系统、中间件、数据库和应用程序版本。
  • 网络条件:配置与生产环境相似的网络条件,包括带宽和延迟。
  • 数据准备:准备测试数据,确保数据量和数据分布与生产环境相似。
1.3 工具安装

安装和配置 JMeter 及其所需的插件和依赖:

  • Apache JMeter:主要的性能测试工具。
  • JMeter Plugins:如 JMeter Plugins Manager,用于扩展 JMeter 的功能。
  • InfluxDB:用于存储测试结果数据。
  • Grafana:用于可视化展示测试结果。

2. 测试设计

2.1 识别关键业务流程

识别系统中的关键业务流程,这些流程是用户使用系统时的主要操作路径。例如,在一个电商网站中,关键业务流程可能包括:

  • 用户登录
  • 浏览商品
  • 添加商品到购物车
  • 提交订单
  • 支付订单
2.2 创建 JMeter 测试计划

在 JMeter 中创建测试计划,涵盖上述关键业务流程。以下是一个示例结构:

  • Test Plan
    • Thread Group(用户组)
      • HTTP Request Defaults(默认请求设置)
      • Login(登录)
        • HTTP Request
        • JSON Extractor(提取登录响应中的用户信息)
      • Browse Products(浏览商品)
        • HTTP Request
      • Add to Cart(添加到购物车)
        • HTTP Request
      • Checkout(结账)
        • HTTP Request
      • Payment(支付)
        • HTTP Request
      • View Results Tree(结果树)
      • Summary Report(汇总报告)
2.3 配置测试参数

为每个 HTTP 请求配置参数,如 URL、请求方法、请求头、请求体等。使用 CSV Data Set Config 从 CSV 文件中读取用户数据,模拟多用户登录和操作。

2.4 设置断言

为关键请求添加断言,验证响应数据是否正确。例如,登录请求可以添加响应码断言,验证是否返回200状态码。

2.5 配置负载参数

在 Thread Group 中设置负载参数,包括线程数(虚拟用户数)、Ramp-Up Period(线程启动时间)、Loop Count(循环次数)等。根据测试目标和环境配置合适的负载。

3. 测试执行

3.1 验证测试脚本

在正式执行测试前,先用少量线程数验证测试脚本是否正确,确保所有请求和参数配置正确。

3.2 执行压力测试

逐步增加线程数,执行压力测试,观察系统在不同负载下的表现。记录系统的响应时间、吞吐量、错误率等性能指标。

3.3 收集监控数据

使用监控工具(如 Prometheus 和 Grafana)监控系统的资源使用情况,包括 CPU、内存、磁盘和网络等。确保在测试过程中系统的资源使用情况在预期范围内。

3.4 保存测试结果

将 JMeter 的测试结果保存到文件中,以便后续分析。可以使用 Listener 将结果保存为 CSV 或者 JTL 格式。

4. 结果分析

4.1 分析测试结果

使用 JMeter 内置的 Listener 分析测试结果,包括响应时间分布、吞吐量、错误率等。识别系统的瓶颈和性能问题。

4.2 可视化测试结果

使用 Grafana 将测试结果可视化,生成响应时间、吞吐量和资源使用情况的图表,方便直观地分析系统性能。

4.3 优化系统性能

根据测试结果,识别并优化系统的瓶颈。例如,优化数据库查询、增加缓存、调整线程池配置等。

4.4 重新测试

在优化系统后,重新执行全链路压测,验证优化措施的效果。确保系统性能得到提升,并在高负载下表现稳定。

详细步骤示例

以下是一个详细的示例,展示如何通过 JMeter 进行全链路压测。

1. 创建测试计划

打开 JMeter,新建一个测试计划(Test Plan)。

2. 添加线程组

在测试计划中添加一个线程组(Thread Group),设置线程数、Ramp-Up Period 和循环次数。

Test Plan
  - Thread Group
    - Number of Threads (users): 100
    - Ramp-Up Period (seconds): 10
    - Loop Count: 10
3. 配置 HTTP 请求

在线程组中添加 HTTP 请求(HTTP Request),配置请求的 URL、方法、参数等。

Thread Group
  - HTTP Request
    - Name: Login
    - URL: http://example.com/login
    - Method: POST
    - Parameters:
      - username: ${username}
      - password: ${password}
4. 添加 JSON 提取器

在登录请求下添加 JSON 提取器(JSON Extractor),提取响应中的用户信息。

HTTP Request (Login)
  - JSON Extractor
    - Reference Name: user_id
    - JSON Path: $.user.id
5. 添加浏览商品请求

在线程组中添加浏览商品请求,配置请求的 URL 和方法。

Thread Group
  - HTTP Request (Browse Products)
    - URL: http://example.com/products
    - Method: GET
6. 添加添加到购物车请求

在线程组中添加添加到购物车请求,配置请求的 URL、方法和参数。

Thread Group
  - HTTP Request (Add to Cart)
    - URL: http://example.com/cart/add
    - Method: POST
    - Parameters:
      - product_id: ${product_id}
      - user_id: ${user_id}
7. 添加结账请求

在线程组中添加结账请求,配置请求的 URL 和方法。

Thread Group
  - HTTP Request (Checkout)
    - URL: http://example.com/checkout
    - Method: POST
    - Parameters:
      - cart_id: ${cart_id}
      - user_id: ${user_id}
8. 添加支付请求

在线程组中添加支付请求,配置请求的 URL 和方法。

Thread Group
  - HTTP Request (Payment)
    - URL: http://example.com/payment
    - Method: POST
    - Parameters:
      - order_id: ${order_id}
      - user_id: ${user_id}
9. 添加结果监听器

在线程组中添加结果监听器(Listener),如结果树(View Results Tree)和汇总报告(Summary Report)。

Thread Group
  - View Results Tree
  - Summary Report
10. 配置 CSV Data Set Config

在测试计划中添加 CSV Data Set Config,从 CSV 文件中读取测试数据。

Test Plan
  - CSV Data Set Config
    - Filename: user_data.csv
    - Variable Names: username, password, product_id, cart_id, order_id

测试执行

1. 验证测试脚本

先用少量线程数验证测试脚本是否正确,确保所有请求和参数配置正确。

2. 执行压力测试

逐步增加线程数,执行压力测试,观察系统在不同负载下的表现。记录系统的响应时间、吞吐量、错误率等性能指标。

3. 收集监控数据

使用监控工具(如 Prometheus 和 Grafana)监控系统的资源使用情况,包括 CPU、内存、磁盘和网络等。

4. 保存测试结果

将 JMeter 的测试结果保存到文件中,以便后续分析。可以使用 Listener 将结果保存为 CSV 或者 JTL 格式。

结果分析

1. 分析测试结果

使用 JMeter 内

置的 Listener 分析测试结果,包括响应时间分布、吞吐量、错误率等。识别系统的瓶颈和性能问题。

2. 可视化测试结果

使用 Grafana 将测试结果可视化,生成响应时间、吞吐量和资源使用情况的图表,方便直观地分析系统性能。

3. 优化系统性能

根据测试结果,识别并优化系统的瓶颈。例如,优化数据库查询、增加缓存、调整线程池配置等。

4. 重新测试

在优化系统后,重新执行全链路压测,验证优化措施的效果。确保系统性能得到提升,并在高负载下表现稳定。

详细代码示例

以下是一个完整的 JMeter 测试计划 XML 配置示例:

<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="5.0" jmeter="5.4.1">
  <hashTree>
    <TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true">
      <stringProp name="TestPlan.comments"></stringProp>
      <boolProp name="TestPlan.functional_mode">false</boolProp>
      <boolProp name="TestPlan.tearDown_on_shutdown">true</boolProp>
      <boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
      <elementProp name="TestPlan.user_defined_variables" elementType="Arguments">
        <collectionProp name="Arguments.arguments"/>
      </elementProp>
      <stringProp name="TestPlan.user_define_classpath"></stringProp>
    </TestPlan>
    <hashTree>
      <CSVDataSet guiclass="TestBeanGUI" testclass="CSVDataSet" testname="CSV Data Set Config" enabled="true">
        <stringProp name="filename">user_data.csv</stringProp>
        <stringProp name="fileEncoding"></stringProp>
        <stringProp name="variableNames">username,password,product_id,cart_id,order_id</stringProp>
        <stringProp name="delimiter">,</stringProp>
        <boolProp name="quotedData">false</boolProp>
        <boolProp name="recycle">true</boolProp>
        <boolProp name="stopThread">false</boolProp>
        <stringProp name="shareMode">shareMode.all</stringProp>
      </CSVDataSet>
      <hashTree/>
      <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
        <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
        <elementProp name="ThreadGroup.main_controller" elementType="LoopController">
          <boolProp name="LoopController.continue_forever">false</boolProp>
          <stringProp name="LoopController.loops">10</stringProp>
        </elementProp>
        <stringProp name="ThreadGroup.num_threads">100</stringProp>
        <stringProp name="ThreadGroup.ramp_time">10</stringProp>
        <boolProp name="ThreadGroup.scheduler">false</boolProp>
        <stringProp name="ThreadGroup.duration"></stringProp>
        <stringProp name="ThreadGroup.delay"></stringProp>
      </ThreadGroup>
      <hashTree>
        <ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="HTTP Request Defaults" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments"/>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.contentEncoding"></stringProp>
          <stringProp name="HTTPSampler.path"></stringProp>
          <stringProp name="HTTPSampler.concurrentPool">6</stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </ConfigTestElement>
        <hashTree/>
        <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Login" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments">
              <elementProp name="username" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${username}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">username</stringProp>
              </elementProp>
              <elementProp name="password" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${password}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">password</stringProp>
              </elementProp>
            </collectionProp>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.path">/login</stringProp>
          <stringProp name="HTTPSampler.method">POST</stringProp>
          <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
          <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
          <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
          <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
          <stringProp name="HTTPSampler.monitor">false</stringProp>
          <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </HTTPSamplerProxy>
        <hashTree>
          <JSONPostProcessor guiclass="JSONPostProcessorGui" testclass="JSONPostProcessor" testname="JSON Extractor" enabled="true">
            <stringProp name="JSONPostProcessor.referenceNames">user_id</stringProp>
            <stringProp name="JSONPostProcessor.jsonPathExprs">$.user.id</stringProp>
            <stringProp name="JSONPostProcessor.match_numbers">0</stringProp>
            <stringProp name="JSONPostProcessor.defaultValues"></stringProp>
          </JSONPostProcessor>
        </hashTree>
        <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Browse Products" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments"/>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.path">/products</stringProp>
          <stringProp name="HTTPSampler.method">GET</stringProp>
          <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
          <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
          <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
          <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
          <stringProp name="HTTPSampler.monitor">false</stringProp>
          <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </HTTPSamplerProxy>
        <hashTree/>
        <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Add to Cart" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments">
              <elementProp name="product_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${product_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">product_id</stringProp>
              </elementProp>
              <elementProp name="user_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${user_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">user_id</stringProp>
              </elementProp>
            </collectionProp>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com

</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.path">/cart/add</stringProp>
          <stringProp name="HTTPSampler.method">POST</stringProp>
          <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
          <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
          <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
          <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
          <stringProp name="HTTPSampler.monitor">false</stringProp>
          <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </HTTPSamplerProxy>
        <hashTree/>
        <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Checkout" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments">
              <elementProp name="cart_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${cart_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">cart_id</stringProp>
              </elementProp>
              <elementProp name="user_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${user_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">user_id</stringProp>
              </elementProp>
            </collectionProp>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.path">/checkout</stringProp>
          <stringProp name="HTTPSampler.method">POST</stringProp>
          <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
          <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
          <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
          <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
          <stringProp name="HTTPSampler.monitor">false</stringProp>
          <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </HTTPSamplerProxy>
        <hashTree/>
        <HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Payment" enabled="true">
          <elementProp name="HTTPsampler.Arguments" elementType="Arguments">
            <collectionProp name="Arguments.arguments">
              <elementProp name="order_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${order_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">order_id</stringProp>
              </elementProp>
              <elementProp name="user_id" elementType="HTTPArgument">
                <boolProp name="HTTPArgument.always_encode">false</boolProp>
                <stringProp name="Argument.value">${user_id}</stringProp>
                <stringProp name="Argument.metadata">=</stringProp>
                <boolProp name="HTTPArgument.use_equals">true</boolProp>
                <stringProp name="Argument.name">user_id</stringProp>
              </elementProp>
            </collectionProp>
          </elementProp>
          <stringProp name="HTTPSampler.domain">example.com</stringProp>
          <stringProp name="HTTPSampler.port"></stringProp>
          <stringProp name="HTTPSampler.protocol">http</stringProp>
          <stringProp name="HTTPSampler.path">/payment</stringProp>
          <stringProp name="HTTPSampler.method">POST</stringProp>
          <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
          <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
          <boolProp name="HTTPSampler.use_keepalive">true</boolProp>
          <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
          <stringProp name="HTTPSampler.monitor">false</stringProp>
          <stringProp name="HTTPSampler.embedded_url_re"></stringProp>
          <stringProp name="HTTPSampler.connect_timeout"></stringProp>
          <stringProp name="HTTPSampler.response_timeout"></stringProp>
        </HTTPSamplerProxy>
        <hashTree/>
        <ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="View Results Tree" enabled="true">
          <boolProp name="ResultCollector.error_logging">false</boolProp>
          <objProp>
            <name>saveConfig</name>
            <value class="SampleSaveConfiguration">
              <time>true</time>
              <latency>true</latency>
              <timestamp>true</timestamp>
              <success>true</success>
              <label>true</label>
              <code>true</code>
              <message>true</message>
              <threadName>true</threadName>
              <dataType>true</dataType>
              <encoding>false</encoding>
              <assertions>true</assertions>
              <subresults>true</subresults>
              <responseData>false</responseData>
              <samplerData>false</samplerData>
              <xml>true</xml>
              <fieldNames>true</fieldNames>
              <responseHeaders>false</responseHeaders>
              <requestHeaders>false</requestHeaders>
              <responseDataOnError>false</responseDataOnError>
              <saveAssertionResultsFailureMessage>true</saveAssertionResultsFailureMessage>
              <assertionsResultsToSave>0</assertionsResultsToSave>
              <bytes>true</bytes>
              <sentBytes>true</sentBytes>
              <url>true</url>
              <threadCounts>true</threadCounts>
              <idleTime>true</idleTime>
              <connectTime>true</connectTime>
            </value>
          </objProp>
          <stringProp name="filename"></stringProp>
        </ResultCollector>
        <hashTree/>
        <ResultCollector guiclass="SummaryReport" testclass="ResultCollector" testname="Summary Report" enabled="true">
          <boolProp name="ResultCollector.error_logging">false</boolProp>
          <objProp>
            <name>saveConfig</name>
            <value class="SampleSaveConfiguration">
              <time>true</time>
              <latency>true</latency>
              <timestamp>true</timestamp>
              <success>true</success>
              <label>true</label>
              <code>true</code>
              <message>true</message>
              <threadName>true</threadName>
              <dataType>true</dataType>
              <encoding>false</encoding>
              <assertions>true</assertions>
              <subresults>true</subresults>
              <responseData>false</responseData>
              <samplerData>false</samplerData>
              <xml>true</xml>
              <fieldNames>true</fieldNames>
              <responseHeaders>false</responseHeaders>
              <requestHeaders>false</requestHeaders>
              <responseDataOnError>false</responseDataOnError>
              <saveAssertionResultsFailureMessage>true</saveAssertionResultsFailureMessage>
              <assertionsResultsToSave>0</assertionsResultsToSave>
              <bytes>true</bytes>
              <sentBytes>true</sentBytes>
              <url>true</url>
              <threadCounts>true</threadCounts>
              <idleTime>true</idleTime>
              <connectTime>true</connectTime>
            </value>
          </objProp>
          <stringProp name="filename"></stringProp>
        </ResultCollector>
        <hashTree/>
      </hashTree>
    </hashTree>
  </hashTree>
</jmeterTestPlan>

总结

通过以上步骤,你可以使用 JMeter 进行全链路压测,覆盖从用户登录到支付的完整业务流程。通过配置合理的负载参数、添加必要的监控和结果分析工具,你可以全面了解系统在高负载下的表现,并找到系统的性能瓶颈,进行针对性的优化。全链路压测不仅能帮助你提升系统的稳定性和可靠性,还能为未来的扩展和优化提供宝贵的数据支持。

  • 7
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值