我尝试将图像文件解析为const isActive = (match: Match<any>, historyLocation: Location) => {
const basename = (window.env.REACT_APP_BASE_URI || "/") === "/" ? "" : window.env.REACT_APP_BASE_URI;
const fullUrl = `${basename.replace(/^(.+?)\/*?$/, "$1")}${historyLocation.pathname}`;
console.log("----------------------");
console.log({
basename,
fullUrl,
historyLocation,
historyLocationPathName: historyLocation.pathname,
location: window.location.pathname,
match,
});
console.log("----------------------");
if (!match) {
return;
}
return window.location.pathname.startsWith(`${fullUrl}`);
};
以进行识别,但是它返回了一个空的列表符号。
我已经重新检查以确保图像文件存在于我的目录中。
match
我希望看到生成器为找到图像的每个位置返回四个整数对象,实际结果应如下所示:
list(pyautogui.locateALLOnScreen(''))
但是我得到以下空列表:
import pyautogui
list(pyautogui.locateALLOnScreen('bru.jpg'))
我做错了什么?