我正在使用angularjs加载我的wordpress帖子列表,但是我无法使用我的部分文件处理我的任何php函数。
我尝试过使用search.php而不是search.html之类的东西,但是这样做时我会收到诸如致命错误之类的错误get_post_meta未定义。
现在我知道我们不应该将客户端与服务器端混合,我可以使用某种服务来解析我的php,但我不知道如何去做。我需要我的search.php来渲染我的php标签,这样我就可以显示自定义字段,并使用我在那里的几个php函数。
这是最好的方法吗?
在我的页面模板(.php)上,我有 -
<div id="page" ng-app="app">
<header>
<h1>
<a href="<?php echo home_url(); ?>">Search</a>
</h1>
</header>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div ng-Cloak ng-controller="MyController" class="my-controller">
<div ng-view></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php rewind_posts(); ?>
<div ng-controller="OtherController" class="other-controller">
<div class="text-center">
<dir-pagination-controls boundary-links="true" on-page-change="pageChangeHandler(newPageNumber)" template-url="/partials/dirPagination.tpl.html"></dir-pagination-controls>
</div>
</div>
<footer>
© <?php echo date( 'Y' ); ?>
</footer>
</div>
在我的php文件中,我希望被调用视图具有诸如 -
之类的功能<?php
$pcomp1b = get_post_meta(get_the_ID(), 'pa_meta_comp1b', true);
$pcomp1c = get_post_meta(get_the_ID(), 'pa_meta_comp1c', true);
$pcomp1d = get_post_meta(get_the_ID(), 'pa_meta_comp1d', true); ?>
数学 -
if( is_numeric( $price1 ) ) {
$a1 = $price1;
}
$b1 = $pcomp1d;
$sqft1 = str_replace( ',', '', $b1 );
if( is_numeric( $sqft1 ) ) {
$b1 = $sqft1;
}
$a2 = $pcomp2f;
$price2 = str_replace( ',', '', $a2 );
if( is_numeric( $price2 ) ) {
$a2 = $price2;
}
$b2 = $pcomp2d;
$sqft2 = str_replace( ',', '', $b2 );
if( is_numeric( $sqft2 ) ) {
$b2 = $sqft2;
}
$a3 = $pcomp3f;
$price3 = str_replace( ',', '', $a3 );
if( is_numeric( $price3 ) ) {
$a3 = $price3;
}
$b3 = $pcomp3d;
$sqft3 = str_replace( ',', '', $b3 );
if( is_numeric( $sqft3 ) ) {
$b3 = $sqft3;
}
$ppsqft1 = ROUND($price1 / $sqft1);
$ppsqft2 = ROUND($price2 / $sqft2);
$ppsqft3 = ROUND($price3 / $sqft3);
$ppsav = ROUND((($ppsqft1 + $ppsqft2 + $ppsqft3)/3));
$b4 = $property_area;
$parea = str_replace( ',', '', $b4 );
if( is_numeric( $parea ) ) {
$b4 = $parea;
}
$ehvp = $ppsav * $parea;
$homevalue = number_format($ehvp, 0, '.', ',');
echo '$' . $homevalue; ?>
和功能 -
<?php if (class_exists('MRP_Multi_Rating_API')){ MRP_Multi_Rating_API::display_rating_result(array('rating_item_ids' => 2, 'show_count' => false, 'result_type' => 'value_rt', 'no_rating_results_text' => 'N/A'));} ?>
我的应用脚本 -
var app = angular.module('app', ['ngRoute', 'ngSanitize', 'angularUtils.directives.dirPagination'])
function MyController($scope) {
$scope.currentPage = 1;
$scope.pageSize = 2;
$scope.posts = [];
$scope.pageChangeHandler = function(num) {
console.log('search page changed to ' + num);
};
}
function OtherController($scope) {
$scope.pageChangeHandler = function(num) {
console.log('going to page ' + num);
};
}
app.config(function(paginationTemplateProvider) {
paginationTemplateProvider.setPath('/partials/dirPagination.tpl.html');
});
app.config(function($routeProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$routeProvider
.when('/search-results', {
templateUrl: myLocalized.partials + 'main.html',
controller: 'Main'
})
.when('/:ID', {
templateUrl: myLocalized.partials + 'content.html',
controller: 'Content'
});
})
app.controller('Main', function($scope, $http, $routeParams) {
$http.get('wp-json/posts?type=property').success(function(res){
$scope.posts = res;
});
})
app.controller('Content', function($scope, $http, $routeParams) {
$http.get('wp-json/posts?type=property/?filter["posts_per_page"]=25&filter["orderby"]=date&filter["order"]=desc/' + $routeParams.ID).success(function(res){
$scope.post = res;
});
});
app.controller('MyController', MyController);
app.controller('OtherController', OtherController);
那么如何才能使用ng-view和我的局部模板?
更新
我确实使用wordpress api而且我知道{{tag}} ...我需要用php完成特定的事情。有没有办法将其预处理到部分文件中?
答案 0 :(得分:5)
如果要在外部php文件中包含wordpress本机函数(不是默认模板文件),可以通过将wp-blog-header.php
或wp-load.php
加载到该文件中来加载wordpress默认函数
喜欢在最开始时添加require_once("/path/to/wordpress/wp-load.php");
。
您可以参考以下代码获取$ http请求检索json数据
var app = angular.module('recentPost', []);
app.controller('PostController', ['$scope', '$http', function($scope, $http) {
$http.get('your_json_url')
.then(function(response) {
console.log( response );
/*if ( response.data !== '-1' ) {
$scope.lists= JSON.parse(response.data.data_received);
} else {
$scope.lists= response;
}*/
}
}]);
另外,我没有看到将AngularJS直接用于wordpress的问题,你已经可以使用jQuery + Ajax,没有必要加载额外的库
答案 1 :(得分:0)
您可以将php文件用于所有与查询相关的事情,并使用某种ajax功能调用该php文件,并将响应数据绑定到Angular中的某个div ..请找到以下示例:
library(igraph)
g = graph_from_edgelist(as.matrix(votings[,1:2, drop = FALSE], directed = TRUE))
他们已将所有php代码放在api.php文件中,并且将响应数据绑定到$ scope变量
现在当按下下面的按钮时,他们将从php文件中获取数据并将其放入HTML文件中
<script type="text/javascript">
var sampleApp = angular.module('sampleApp', []); // Define new module for our application
// Create new controller, that accepts two services $scope and $http
function SampleCtrl($scope, $http) {
$scope.date = "sample date"; // Bind data to $scope
// Define new function in scope
$scope.fetch = function() {
// Use $http service to fetch data from the PHP web service
$http.get('api.php').success(function(data) {
$scope.date = data.date; // Bind the data returned from web service to $scope
});
}
};
SampleCtrl.$inject = ['$scope', '$http']; // Ask Angular.js to inject the requested services
sampleApp.controller('SampleCtrl', SampleCtrl); // Initialize controller in pre-defined module
</script>
您可以将此代码用作参考
答案 2 :(得分:0)
是的,有一种方法可以将php预处理为部分文件。
从命令行:
cd /var/www/html
php calculate_prices.php > prices.tpl.html
这会将PHP文件的输出转储到prices.tpl.html文件中。 .tpl.html 是代表&#34; html模板&#34;的命名惯例。
获取已处理的PHP输出的另一种方法是导航到Google Chrome中的该页面并打开Chrome Devtools。在devtools面板中,转到Elements页面,找到您要查找的div,单击它,然后按CTRL + C.然后创建新文件并将其粘贴到那里。
此外,所有这些都可能是不必要的步骤:试试这个
<div ng-include="'myfile.php'"></div
请注意,它有双引号和单引号。单引号阻止它查找$ scope.myfile.php,而是直接加载该文件。