我们如何在CAKE PHP中将PHP代码添加到模型文件中

时间:2016-08-08 07:02:30

标签: cakephp-2.0

module.exports = {
  entry: "./main.js",
  output: {
    path: "./",
    fileName: "index.js"
  },
  devServer: {
    inline: true,
    port: 3333
  },
  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel',
        query: {
          presets: ['es2015', 'react']
        }
      }
    ]
  }
}

这里public $hasOne = array( 'Subscriber' => array( 'className' => 'Subscriber', 'foreignKey' => 'UserID', 'conditions' => array( 'Subscriber.end_date >=' => date('Y-m-d') ), )); 给出了html解析错误。甚至回声和打印也无法在模型文件中使用。

我的目标是从所有订阅用户表中获取数据直到当前日期。

1 个答案:

答案 0 :(得分:0)

你可以这样试试,

public $hasOne = array(
'Subscriber' => array(
  'className' => 'Subscriber',
  'foreignKey' => 'UserID',
  'conditions' => array(
    'Subscriber.end_date >= date("Y-m-d")'
  ),
));

它将按照您的要求运作