我只是在构建Azure IoT开发工具包MXChip的设备代码并将其部署到设备,但是出现以下错误。
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;
// WP_Query arguments
$args = array (
'post_type' => 'YOUR_CUSTOM_POST_TYPE',
'posts_per_page' => '3',
'paged' => $paged
);
// The Query
$cquery = new WP_Query( $args );
while ( $cquery->have_posts() ) : $cquery->the_post();
echo $post->ID;
endwhile;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $cquery->max_num_pages
) );
一切正常,我不确定问题出在哪里,还有其他人遇到过这个问题吗?
答案 0 :(得分:1)
这确实是一个奇怪的行为,一个简单的解决方法解决了这个问题。我只是再次运行单击F1,键入并选择IoT Workbench:设备,然后选择设备上载。而且它再次正常运行。
如果它不适合您
完成后,您将收到以下消息。
Build options changed, rebuilding all
GetStarted:9:21: error: utility.h: No such file or directory
compilation terminated.
exit status 1
[Error] Exit with code=1