According to sitemap rule [0], the current page [pages/his/his] will be indexed

Keywords: JSON

1. Reasons for errors

Fri Sep 06 2019 10:34:15 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/index/index] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3546:6
(anonymous) @ VM3546:13
VM3460 asdebug.js:1 Fri Sep 06 2019 10:34:15 GMT+0800 (China standard time) Close the legal domain name in configuration. web-view(Business domain name) TLS Version and HTTPS Certificate inspection
VM3445:1 The tool does not verify the legal domain name, web-view(Business domain name) TLS Version and HTTPS Certificate.
console.warn @ VM3445:1
checkUrl @ VM3460 asdebug.js:1
v @ VM3460 asdebug.js:1
createRequestTask @ VM3460 asdebug.js:1
n @ VM3460 asdebug.js:1
invoke @ WAService.js:1
i @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
Cs @ WAService.js:1
a @ WAService.js:1
n @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
HttpRequst @ util.js:16
onLoad @ index.js:274
(anonymous) @ WAService.js:1
p.__callPageLifeTime__ @ WAService.js:1
Ct @ WAService.js:1
(anonymous) @ WAService.js:1
At @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
i.emit @ WAService.js:1
emit @ WAService.js:1
(anonymous) @ WAService.js:1
(anonymous) @ WAService.js:1
n @ VM3460 asdebug.js:1
(anonymous) @ VM3460 asdebug.js:1
(anonymous) @ VM3460 asdebug.js:1
_ws.onmessage @ VM3460 asdebug.js:1
Show 4 more frames
VM3552:4 Fri Sep 06 2019 10:34:18 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/his/his] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3552:6
(anonymous) @ VM3552:13
VM3561:4 Fri Sep 06 2019 10:34:22 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/def/def] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3561:6
(anonymous) @ VM3561:13
VM3566:4 Fri Sep 06 2019 10:34:25 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/index/index] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3566:6
(anonymous) @ VM3566:13
VM3567:4 Fri Sep 06 2019 10:34:28 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/def/def] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3567:6
(anonymous) @ VM3567:13
VM3568:4 Fri Sep 06 2019 10:34:29 GMT+0800 (China standard time) sitemap Index hints
VM3445:1  according to sitemap Rules[0],Current page [pages/his/his] Will be indexed
console.warn @ VM3445:1
(anonymous) @ VM3568:6
(anonymous) @ VM3568:13

2. Reasons for Errors

Quote from the official website of the small program:

"In the open applet search, developers can configure their applet pages to allow index by sitemap.json configuration or managing background page containing switches. When a developer allows index, he will index the content of the small program by crawler. When the user's search term triggers the index, the page of the applet may be displayed in the search results. When a crawler accesses a page in a widget, it carries a specific user-agent: mpcrawler and Scenario value 1129. It should be noted that if the page data found by the widget crawler is not consistent with the presentation of the real user, the page will not be indexed.

{
	"description": "Project Profile",
	"packOptions": {
		"ignore": []
	},
	"setting": {
		"urlCheck": false,
		"es6": true,
		"postcss": true,
		"minified": true,
		"newFeature": true,
		"coverView": true,
		"autoAudits": false,
		"checkInvalidKey": true,
		"checkSiteMap": true,
		"uploadWithSourceMap": true,
		"babelSetting": {
			"ignore": [],
			"disablePlugins": [],
			"outputPath": ""
		}
	},
	"compileType": "miniprogram",
	"libVersion": "2.8.0",
	"appid": "xxxxxxxxxxxxxxx",
	"projectname": "weixin-mini",
	"debugOptions": {
		"hidedInDevtools": []
	},
	"isGameTourist": false,
	"simulatorType": "wechat",
	"simulatorPluginLibVersion": {},
	"condition": {
		"search": {
			"current": -1,
			"list": []
		},
		"conversation": {
			"current": -1,
			"list": []
		},
		"game": {
			"currentL": -1,
			"list": []
		},
		"miniprogram": {
			"current": -1,
			"list": []
		}
	}
}

3. Solutions

Change checkSiteMap in settings configuration in file project.config.json to false

{
	"description": "Project Profile",
	"packOptions": {
		"ignore": []
	},
	"setting": {
		"urlCheck": false,
		"es6": true,
		"postcss": true,
		"minified": true,
		"newFeature": true,
		"coverView": true,
		"autoAudits": false,
		"checkInvalidKey": true,
		"checkSiteMap": false,
		"uploadWithSourceMap": true,
		"babelSetting": {
			"ignore": [],
			"disablePlugins": [],
			"outputPath": ""
		}
	},
	"compileType": "miniprogram",
	"libVersion": "2.8.0",
	"appid": "xxxxxxxxxxxxxxxx",
	"projectname": "weixin-mini",
	"debugOptions": {
		"hidedInDevtools": []
	},
	"isGameTourist": false,
	"simulatorType": "wechat",
	"simulatorPluginLibVersion": {},
	"condition": {
		"search": {
			"current": -1,
			"list": []
		},
		"conversation": {
			"current": -1,
			"list": []
		},
		"game": {
			"currentL": -1,
			"list": []
		},
		"miniprogram": {
			"current": -1,
			"list": []
		}
	}
}

 

Posted by Gordonator on Tue, 01 Oct 2019 05:46:12 -0700