我从GitHub link Charts实施了图表视图,帮助我如何设置api中的图表数据?
答案 0 :(得分:0)
从API获得响应后,我使用下面的代码行来填充图表数据
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# RewriteCond %{ENV:HTTPS} !=on
# RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
希望这会对你有所帮助