GithubHelp home page GithubHelp logo

Comments (1)

KwToPA avatar KwToPA commented on August 11, 2024

AI反馈

从你提供的错误信息来看,这个错误是在尝试读取一个为null的对象的’data’属性时发生的。这通常意味着你的脚本试图访问一个尚未初始化或者不存在的对象。这个错误出现在你的脚本的第146行

根据你提供的脚本,这个错误可能是在以下这段代码中产生的

let _responseJson = await originFetch(url, options).then(response => {
return response.json();
}).catch(err => {
return {
error: true
}
});
if(_responseJson.error) {
return;
}
if (_responseJson.data && _responseJson.data.result) {
if (_responseJson.data.result.length < pageSize) {
finished = true;
maxPage = actualPage;
}
responseJson = _responseJson;
let list = responseJson.data.result.filter(ele => ele.pubdate >= dateRange[0] && ele.pubdate <= dateRange[1]);
result = result.concat(list);
} else {
finished = true;
maxPage = actualPage;
}

在这段代码中,_responseJson是通过异步请求获取的。如果这个请求失败,_responseJson可能会是一个没有’data’属性的对象,这就可能导致你遇到的错误。

为了解决这个问题,你可以在访问_responseJson.data之前,先检查_responseJson是否存在。如果_responseJson不存在,你可以让你的函数返回一个错误信息,或者进行其他的错误处理

from userscripts.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.