Copy each demo program at the link address you gave me (
https://stackblitz.com/edit/paramquery-demo-import-xlsx-6phwhz?file=index.js)
After creating a file and saving it on my computer, edit the url in the index.js file
I searched using a web browser (
http://127.0.0.1/index.html).
As a result, the data stored in the DB is not displayed and only the message 'No rows to display' is displayed.
As a result of inquiring the server program (
http://127.0.0.1/products.php) with a web browser,
the DB data was accurately displayed and searched as shown below.
DB connection OK!!
{"data":[{"ProductID":1,"ProductName":"AA","QuantityPerUnit":1,"UnitPrice":2,"UnitsInStock":3,"Discontinued":true},
{"ProductID":2,"ProductName":"BB","QuantityPerUnit":11,"UnitPrice":22,"UnitsInStock":33,"Discontinued":false}]}
Even if you search after editing the url in the index.js file (add
https://paramquery.com/pro/),
only the message 'No rows to display' is displayed.
All files used for the test are attached.
Please help what the problem is.