first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

17
金壶/appV1/test.html Normal file
View File

@@ -0,0 +1,17 @@
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
axios.post('https://api.ydyd51.com/Goods/detail', {
sku_id: '414502',
})
.then(function (response) {
console.log(response);
}, {
headers: {
authentication: 'USERID dGVzdC0zMDUyLXpZQTV3a0xKRDNWZDQybksxZkg1Z3VoU2JxVTNONnZCLTIyNUVnVTk4cWppR1FSSTh3TkI2a3YxZnRNWXlibXI1'
}
})
.catch(function (error) {
console.log(error);
});
</script>